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