Mono.Events.CreateManipulationDeltaEventArgsEventHandlerDispatcher C# (CSharp) Method

CreateManipulationDeltaEventArgsEventHandlerDispatcher() public static method

public static CreateManipulationDeltaEventArgsEventHandlerDispatcher ( EventHandler handler ) : UnmanagedEventHandler
handler EventHandler
return UnmanagedEventHandler
		public static UnmanagedEventHandler CreateManipulationDeltaEventArgsEventHandlerDispatcher (EventHandler <ManipulationDeltaEventArgs> handler)
		{
			return SafeDispatcher ( (sender, calldata, closure)
						=> handler(NativeDependencyObjectHelper.FromIntPtr (closure),
								new ManipulationDeltaEventArgs ()) );
		}
Events