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!

DataGrid.OnPropertyChanged

Raises the OnPropertyChanged event.

[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
);

Parameters

e
[To be supplied.]

Remarks

Raising an event invokes the event-handling method through a delegate. For an overview, see TBD.

Notes to Inheritors When overriding OnPropertyChanged in a derived class, be sure to call the base class's OnPropertyChanged method.

See Also

DataGrid Class | DataGrid Members | System.WinForms Namespace