有没有办法将组合框值限制为“0”,其中我的音量值除以目标值,因为我的目标值是组合框,并给我一个错误除以零。我试过这个但不走运。
private void comboBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsNumber(e.KeyChar) && (e.KeyChar != '0'))
{
e.Handled = true;
}
}