This method is called by the control when any property changes. Inheriting controls can overide this method to get property change notification on basic properties. Inherting controls must call base.propertyChanged.
[Visual Basic] Overrides Protected Sub OnPropertyChanged( _ ByVal e As PropertyChangedEventArgs _ ) [C#] protected override void OnPropertyChanged( PropertyChangedEventArgs e ); [C++] protected: override void OnPropertyChanged( PropertyChangedEventArgs* e ); [JScript] protected override function OnPropertyChanged( e : PropertyChangedEventArgs );
TrackBar Class | TrackBar Members | System.WinForms Namespace