[C#] 엔터키 이벤트(KeyEvent)
반응형
로그인을 하거나 값을 입력해서 확인 버튼을 누르는 경우가 많다.
하지만 습관이라는게 무서워서 그런지 나도 모르게 값을 입력을 하면 Enter Key를 누른다.
그래서 Enter Key Event 에 관해서 올려보자고 한다.
private void Test_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { //to do } else { return; }} |
Text Box를 클릭을 하면 VS 2010 같은 경우 우측에서 번개 모양의 이벤트를 들어가서 메서드를 생성을 할 수 있다.
KeyDown 이벤트를 더블 클릭하면 위에 코드처럼 메서드가 생성이 되면서 포커싱이 돌아간다.
작성을 완료하고 Text Box 에서 Enter Key를 누르면 잘 작동 되는것을 볼 수 있다.
반응형
'프로그래밍 > Language C#' 카테고리의 다른 글
[Design Pattern] Singleton Pattern (싱글톤 패턴) (0) | 2013.12.26 |
---|---|
[C#] 통합 개발 환경 [integrated development environment] (0) | 2013.12.23 |
[C#] System.Security.SecurityException Window Serveice 등록시 Install Error (0) | 2013.07.23 |
[C#] Serial Port, DiscardInBuffer (0) | 2013.07.18 |
[C#] Console.Write & WriteLine 차이점 (0) | 2013.05.31 |
댓글
이 글 공유하기
다른 글
-
[Design Pattern] Singleton Pattern (싱글톤 패턴)
[Design Pattern] Singleton Pattern (싱글톤 패턴)
2013.12.26 -
[C#] 통합 개발 환경 [integrated development environment]
[C#] 통합 개발 환경 [integrated development environment]
2013.12.23 -
[C#] System.Security.SecurityException Window Serveice 등록시 Install Error
[C#] System.Security.SecurityException Window Serveice 등록시 Install Error
2013.07.23 -
[C#] Serial Port, DiscardInBuffer
[C#] Serial Port, DiscardInBuffer
2013.07.18