コード例 #1
0
 public static void RemoveAutomationEventHandler(
     AutomationEvent eventId,
     AutomationElement element,
     AutomationEventHandler eventHandler)
 {
     AutomationEventHandlerImpl.Remove(eventId: eventId, element: element, handlingDelegate: eventHandler);
 }
コード例 #2
0
 public static void AddAutomationEventHandler(
     AutomationEvent eventId,
     AutomationElement element,
     TreeScope scope,
     AutomationEventHandler eventHandler)
 {
     AutomationEventHandlerImpl.Add(eventId: eventId, element: element, scope: scope, handlingDelegate: eventHandler);
 }