如何使文本框数组只接受特定的字母表?

时间:2011-04-12 11:52:54

标签: c#

我正在使用visual studio c#.net winform,我有两个81个文本框的数组。 。 。我无法弄清楚如何使这些文本框只接受特定的字母表。 。 。任何人都可以告诉我代码。 。 。 提前THanx

1 个答案:

答案 0 :(得分:2)

private void textBox_KeyPress(object sender, KeyPressEventArgs e)
{
    List<char> chrs = new List<char>{'1', '2', '3'};
    if (!chrs.Contains(e.KeyChar))
    {
        e.Handled = true;
    }
}