BindingRemovePropertyEvent Method |
Removes an event handler previously attached with the AddPropertyEvent method.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static void RemovePropertyEvent(
Object obj,
EventHandler<EventArgs> eh
)
Public Shared Sub RemovePropertyEvent (
obj As Object,
eh As EventHandler(Of EventArgs)
)
static member RemovePropertyEvent :
obj : Object *
eh : EventHandler<EventArgs> -> unit
Parameters
- obj
- Type: SystemObject
INotifyPropertyChanged object to remove the event handler from - eh
- Type: SystemEventHandlerEventArgs
Event handler delegate to remove
See Also