ModelingBindingSource.OnPropertyChanged Method
When a property changes we need to notify the base class that the item has change so that the row of that item will be repainted. Without this notification only the current row can detect changes and repaint itself - see bug #611878 for more info
Namespace: Microsoft.VisualStudio.Modeling.Design
Assembly: Microsoft.VisualStudio.Modeling.Sdk.10.0 (in Microsoft.VisualStudio.Modeling.Sdk.10.0.dll)
Syntax
'Declaração
Protected Overridable Sub OnPropertyChanged ( _
sender As Object, _
e As EventArgs _
)
protected virtual void OnPropertyChanged(
Object sender,
EventArgs e
)
protected:
virtual void OnPropertyChanged(
Object^ sender,
EventArgs^ e
)
abstract OnPropertyChanged :
sender:Object *
e:EventArgs -> unit
override OnPropertyChanged :
sender:Object *
e:EventArgs -> unit
protected function OnPropertyChanged(
sender : Object,
e : EventArgs
)
Parameters
- sender
Type: System.Object
- e
Type: System.EventArgs
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.