📌  相关文章
📜  windows 窗体文本框只允许数字 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:27.708000             🧑  作者: Mango

代码示例2
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        e.Handled = !char.IsDigit(e.KeyChar) && !char.IsControl(e.KeyChar);
    }