我需要一个事件发生时,向上箭头被按下,另一个当向下箭头被按下。有这个的事件处理程序吗?我能找到的只是价值的改变?
最佳答案
Decimal OldValue;
private void NumericUpDown1_Click(Object sender, EventArgs e) {
if (NumericUpDown1.Value>OldValue)
{
///value increased, handle accordingly
}
else if (NumericUpDown1.Value<OldValue)
{
///value decreased, handle accordingly
}
else
{
return;
}
OldValue=NumericUpDown1.Value;
}