Occurs when the Value property has been changed in some way.
The following declaration shows the syntax for a method that handles the ValueChanged event.
[Visual Basic] Private Sub NumericUpDownName_ValueChanged( _ ByVal sender As Object, _ ByVal e As EventArgs _ ) [C#] private void NumericUpDownName_ValueChanged( object sender, EventArgs e ); [C++] private: void NumericUpDownName_ValueChanged( Object* sender, EventArgs* e ); [JScript] private NumericUpDownName_ValueChanged( sender : Object, e : EventArgs );
Property | Description |
---|---|
|
For the OnValueChanged event to occur, the Value property may be changed in code, by the user typing in a new value, or clicking the up or down button.
NumericUpDown Class | NumericUpDown MembersTopic | System.WinForms Namespace | NumericUpDown.OnValueChanged | NumericUpDown.Value