| | |
|
|
|
C# (.Net)의 TextBox에서 Enter입력시 Logic을 진행하려고 할때 아래와 같이 사용하면된다.
private void KeyDown(object sender, KeyEventArgs e) { if (e.KeyValue.Equals(Convert.ToChar(Keys.Enter))) { //Logic } } private void KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar.Equals('\r')) { //Logci } } private void KeyUp(object sender, KeyEventArgs e) { if (e.KeyValue.Equals(Convert.ToChar(Keys.Enter))) { //Logci } } |
|
|
|
|
|
| http://laedu.net/trackback/43 | |
| |
|
From. Humancoder 2023년 02월 28일 17시 48분 | |
Humancoder |
DaeYoung's Blog :: C# TextBox KeyDown, KeyPress, KeyUp Event에서 Enter키 |
From. capcher 2023년 03월 26일 15시 24분 | |
capcher |
DaeYoung's Blog :: C# TextBox KeyDown, KeyPress, KeyUp Event에서 Enter키 |
| |
| | |
|
|
| |
| | |
|
|
|
| | 웹기반 프로그래밍에 관한 것들을 모을 예정이었는데.. | | |
|
|
| |
«
2024년 11월
»
일 |
월 |
화 |
수 |
목 |
금 |
토 |
|
|
|
|
|
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 |
| | |
|
|