TextBox برای حروف بزرگ
پنجشنبه, ۲۶ اسفند ۱۳۹۵، ۰۱:۴۲ ب.ظ
برای اینکه یک TextBox فقط حروف بزرگ را قبول کند کد زیر را در رویداد keypress آن می نویسیم :
private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if (!(char.IsUpper(e.KeyChar) || char.IsControl(e.KeyChar))) { e.Handled = true; } }
- ۹۵/۱۲/۲۶