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