C# numericUpDown控件如何设置只输入整数?
实现方法有两种,一种是取整,一种是取消小数点的输入。详见下文。
取整方法,修改ValueChanged事件代码如下
private void numericUpDown1_ValueChanged(object sender, System.EventArgs e)
{
numericUpDown1.Value = (int)numericUpDown1.Value;
}
取消小数点的输入
private void numericUpDown1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if (e.KeyChar == '.')
e.Handled = true;
}