Exemplo n.º 1
0
 public static void RemoveAutomationEventHandler(
     AutomationEvent eventId,
     AutomationElement element,
     AutomationEventHandler eventHandler)
 {
     AutomationEventHandlerImpl.Remove(eventId: eventId, element: element, handlingDelegate: eventHandler);
 }
Exemplo n.º 2
0
 public static void AddAutomationEventHandler(
     AutomationEvent eventId,
     AutomationElement element,
     TreeScope scope,
     AutomationEventHandler eventHandler)
 {
     AutomationEventHandlerImpl.Add(eventId: eventId, element: element, scope: scope, handlingDelegate: eventHandler);
 }