DirectBindingTOnDataValueChanged Method |
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax protected virtual void OnDataValueChanged(
EventArgs e
)
Protected Overridable Sub OnDataValueChanged (
e As EventArgs
)
abstract OnDataValueChanged :
e : EventArgs -> unit
override OnDataValueChanged :
e : EventArgs -> unit
Parameters
- e
- Type: SystemEventArgs
[Missing <param name="e"/> documentation for "M:Eto.Forms.DirectBinding`1.OnDataValueChanged(System.EventArgs)"]
Remarks
Implementors of this class should call this method when the value changes
on the bound object. Make sure to also override the HandleEvent
and RemoveEvent methods to hook up/remove any event bindings
you need on the bound object.
See Also