프로그램/C# 2013. 3. 8. 02:06

C# 키 이벤트 ...



private void search_Text_Box_KeyPress(object sender, KeyPressEventArgs e) 
        { 
//텍스트 박스에 키가 눌러 지면 그키가 엔터인지 확인 
            if (e.KeyChar ==(char)Keys.Enter) 
            { 
                search_button_Click(sender, e); 
                //search_button.Focus(); 
            } 
        } 



'프로그램 > C#' 카테고리의 다른 글

C# 메모리 줄이기, 메모리 강제회수  (0) 2013.03.08
C# 웹 검색  (0) 2013.03.08
C# try - catch 예외 처리  (0) 2013.03.08
C# 소스코드 작성법  (0) 2013.03.08
C# 줄바꿈 캐리지리턴과 라인피드 정리  (0) 2013.03.08