Beispiel #1
0
 protected virtual void OnControlPointStateChanged(ControlPointState newValue)
 {
     // add handler code
     UpdateControlPointStateDisplay();
 }
Beispiel #2
0
 protected virtual void OnControlPointStateChanged(ControlPointState newValue, ControlPointState oldValue)
 {
     // handle property changed here if the old value is important; otherwise, just pass on new value
     OnControlPointStateChanged(newValue);
 }