Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- mysql
- pip
- 컨테이너
- pandas
- 핑거스타일
- label
- 채보
- ubuntu
- 기타 연주
- LIST
- Linux
- 오류
- Docker
- paramiko
- Selenium
- JSON
- Visual Studio
- SSH
- Numpy
- YOLO
- C++
- error
- C#
- windows forms
- OpenCV
- C
- pytorch
- VS Code
- 프로그래머스
- Python
Archives
- Today
- Total
목록키 입력 필터 (1)
기계는 거짓말하지 않는다
C# Windows Forms 키 입력 필터
숫자만 입력 또는 숫자와 소수점만 입력 (지우기는 가능함) private void OnlyDigit_KeyPress(object sender, KeyPressEventArgs e) { if (!char.IsDigit(e.KeyChar)) // 숫자만 입력 { e.Handled = true; } } private void OnlyDigitAndDecimalPoint_KeyPress(object sender, KeyPressEventArgs e) // 숫자, 소수점만 입력 { if (!(char.IsDigit(e.KeyChar) || e.KeyChar == '.')) { e.Handled = true; } } private void OnlyChar_KeyPress(object sender, KeyPressE..
C#
2021. 7. 10. 19:12