WeakActionHandlerT1(ActionT1, Object, String) Constructor |
Namespace: AltaxoAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public WeakActionHandler(
Action<T1> handler,
Object eventSource,
string eventName
)
Parameters
- handler ActionT1
- The event handler method (the event sink).
- eventSource Object
- The object that holds the event source.
- eventName String
- The name of the event.
Remarks
Typcical usage:
source.Changed += new WeakActionHandler<MyClass>(this.EhHandleChange, source, nameof(source.Changed));
See Also