Esempio n. 1
0
 public static IDisposable SubscribeToFocusChangedEvent(AutomationFocusChangedEventHandler handler)
 {
     return(Subscribe.ToFocusChangedEvent(handler));
 }
Esempio n. 2
0
 public static IDisposable SubscribeToEvent(this AutomationElement element, AutomationEvent automationEvent, TreeScope treeScope, AutomationEventHandler handler)
 {
     return(Subscribe.ToEvent(element, automationEvent, treeScope, handler));
 }
Esempio n. 3
0
 public static IDisposable SubscribeToStructureChangedEvent(this AutomationElement element, TreeScope treeScope, StructureChangedEventHandler handler)
 {
     return(Subscribe.ToStructureChangedEvent(element, treeScope, handler));
 }