I have a Control
which inherits from NumericUpDown
in WinForms.
I want to handle changes to the DecimalPlaces
-Property of NumericUpDown
, therefore I have both tried declaring a
void OnDecimalPlacesChanged()
{
MessageBox.Show("Moeeep");
}
and also manually subscribing the PropertyChanged
-event
in the ctor manually. It seems to just not fire when I update DecimalPlaces
and I have no idea why.