■ TextBox 클래스에서 한글만 입력하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 32 |
using System; using System.Windows.Forms; /// <summary> /// 텍스트 박스 /// </summary> private TextBox textBox; ... this.textBox.KeyPress += textBox_KeyPress; ... #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((Char.IsPunctuation(e.KeyChar) || Char.IsDigit(e.KeyChar) || Char.IsLetter(e.KeyChar) || Char.IsSymbol(e.KeyChar)) && e.KeyChar != 8) { e.Handled = true; } } #endregion |