NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Control.OnParentPropertyChanged

This method is called by the parent control when any property changes on the parent. This can be overriden by inheriting classes, however they must call base.OnParentPropertyChanged.

[Visual Basic]
Overridable Protected Sub OnParentPropertyChanged( _
   ByVal e As PropertyChangedEventArgs _
)
[C#]
protected virtual void OnParentPropertyChanged(
   PropertyChangedEventArgs e
);
[C++]
protected: virtual void OnParentPropertyChanged(
   PropertyChangedEventArgs* e
);
[JScript]
protected function OnParentPropertyChanged(
   e : PropertyChangedEventArgs
);

Parameters

e
Property change information.

See Also

Control Class | Control Members | System.WinForms Namespace