첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170
using System.Windows.Forms;

#region 텍스트 박스 키 PRESS 처리하기 - textBox_KeyPress(sender, e)

/// <summary>
/// 텍스트 박스 키 PRESS 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
private void textBox_KeyPress(object sender, KeyPressEventArgs e)
{
    if(e.KeyChar == (char)Keys.Enter)
    {
        e.Handled = true;

        Control control = GetNextControl(sender as Control, true);

        if(control != null)
        {
            control.Focus();
        }
    }
}

#endregion

※ Form 클래스를 상속받은 클래스 내에서 정의한 것으로 가정한다.

728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요