7 types derived from AutomationEventArgs
UIAutomationClient (1)
System\Windows\Automation\AutomationFocusChangedEventArgs.cs (1)
31
public class AutomationFocusChangedEventArgs :
AutomationEventArgs
UIAutomationTypes (6)
System\Windows\Automation\ActiveTextPositionChangedEventArgs.cs (1)
16
public sealed class ActiveTextPositionChangedEventArgs :
AutomationEventArgs
System\Windows\Automation\AsyncContentLoadedEventArgs.cs (1)
19
public sealed class AsyncContentLoadedEventArgs :
AutomationEventArgs
System\Windows\Automation\AutomationPropertyChangedEventArgs.cs (1)
23
public sealed class AutomationPropertyChangedEventArgs :
AutomationEventArgs
System\Windows\Automation\NotificationEventArgs.cs (1)
14
public sealed class NotificationEventArgs :
AutomationEventArgs
System\Windows\Automation\StructureChangedEventArgs.cs (1)
57
public sealed class StructureChangedEventArgs :
AutomationEventArgs
System\Windows\Automation\WindowClosedEventArgs.cs (1)
14
public sealed class WindowClosedEventArgs :
AutomationEventArgs
19 instantiations of AutomationEventArgs
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
321
new
AutomationEventArgs
(eventObject));
UIAutomationClient (3)
MS\Internal\Automation\ClientEventManager.cs (2)
649
AutomationEventArgs e = new
AutomationEventArgs
( WindowPattern.WindowOpenedEvent );
670
AutomationEventArgs e = new
AutomationEventArgs
( eventId );
MS\Internal\Automation\UiaCoreApi.cs (1)
651
return new
AutomationEventArgs
(eventId);
UIAutomationClientSideProviders (15)
MS\Internal\AutomationProxies\EventManager.cs (11)
319
AutomationInteropProvider.RaiseAutomationEvent(InvokePattern.InvokedEvent, el, new
AutomationEventArgs
(InvokePattern.InvokedEvent));
331
AutomationInteropProvider.RaiseAutomationEvent(InvokePattern.InvokedEvent, el, new
AutomationEventArgs
(InvokePattern.InvokedEvent));
343
AutomationInteropProvider.RaiseAutomationEvent(InvokePattern.InvokedEvent, el, new
AutomationEventArgs
(InvokePattern.InvokedEvent));
354
AutomationInteropProvider.RaiseAutomationEvent(InvokePattern.InvokedEvent, el, new
AutomationEventArgs
(InvokePattern.InvokedEvent));
367
AutomationInteropProvider.RaiseAutomationEvent(SelectionItemPattern.ElementSelectedEvent, el, new
AutomationEventArgs
(SelectionItemPattern.ElementSelectedEvent));
379
AutomationInteropProvider.RaiseAutomationEvent(SelectionItemPattern.ElementAddedToSelectionEvent, el, new
AutomationEventArgs
(SelectionItemPattern.ElementAddedToSelectionEvent));
391
AutomationInteropProvider.RaiseAutomationEvent(SelectionItemPattern.ElementRemovedFromSelectionEvent, el, new
AutomationEventArgs
(SelectionItemPattern.ElementRemovedFromSelectionEvent));
435
AutomationInteropProvider.RaiseAutomationEvent(SelectionPattern.InvalidatedEvent, el, new
AutomationEventArgs
(SelectionPattern.InvalidatedEvent));
484
AutomationInteropProvider.RaiseAutomationEvent(TextPattern.TextSelectionChangedEvent, el, new
AutomationEventArgs
(TextPattern.TextSelectionChangedEvent));
489
AutomationInteropProvider.RaiseAutomationEvent(TextPattern.TextSelectionChangedEvent, el, new
AutomationEventArgs
(TextPattern.TextSelectionChangedEvent));
500
new
AutomationEventArgs
(TextPattern.TextSelectionChangedEvent));
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (1)
281
AutomationEventArgs eventArgs = new
AutomationEventArgs
(eventId);
MS\Internal\AutomationProxies\WindowsRichEdit.cs (1)
729
this, new
AutomationEventArgs
(TextPattern.TextSelectionChangedEvent));
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
83
AutomationEventArgs e = new
AutomationEventArgs
(AutomationElement.ToolTipOpenedEvent);
160
AutomationEventArgs e = new
AutomationEventArgs
( AutomationElement.ToolTipClosedEvent );
16 references to AutomationEventArgs
UIAutomationClient (11)
MS\Internal\Automation\CalloutQueueItem.cs (2)
24
internal CalloutQueueItem(Delegate clientCallback, UiaCoreApi.UiaCacheResponse cacheResponse,
AutomationEventArgs
e, UiaCoreApi.UiaCacheRequest cacheRequest)
63
internal
AutomationEventArgs
_e; // the event args for the callback
MS\Internal\Automation\ClientEventManager.cs (4)
403
internal static void RaiseEventInThisClientOnly(AutomationEvent eventId, AutomationElement rawEl,
AutomationEventArgs
e)
429
internal static void RaiseEventInThisClientOnly( AutomationEvent eventId, int [] rid,
AutomationEventArgs
e)
649
AutomationEventArgs
e = new AutomationEventArgs( WindowPattern.WindowOpenedEvent );
670
AutomationEventArgs
e = new AutomationEventArgs( eventId );
MS\Internal\Automation\ClientSideQueueItem.cs (2)
23
internal ClientSideQueueItem(Delegate clientCallback, AutomationElement srcEl, UiaCoreApi.UiaCacheRequest request,
AutomationEventArgs
e)
76
private
AutomationEventArgs
_e; // the event args for the callback
MS\Internal\Automation\EventListenerClientSide.cs (1)
61
AutomationEventArgs
e = UiaCoreApi.GetUiaEventArgs(argsAddr);
MS\Internal\Automation\InvokeHandlers.cs (1)
54
internal static void InvokeClientHandler(Delegate clientCallback, AutomationElement srcEl,
AutomationEventArgs
args)
MS\Internal\Automation\UiaCoreApi.cs (1)
636
internal static
AutomationEventArgs
GetUiaEventArgs(IntPtr argsAddr)
UIAutomationClientSideProviders (3)
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (1)
281
AutomationEventArgs
eventArgs = new AutomationEventArgs(eventId);
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
83
AutomationEventArgs
e = new AutomationEventArgs(AutomationElement.ToolTipOpenedEvent);
160
AutomationEventArgs
e = new AutomationEventArgs( AutomationElement.ToolTipClosedEvent );
UIAutomationProvider (1)
System\Windows\Automation\Provider\AutomationInteropProvider.cs (1)
109
public static void RaiseAutomationEvent(AutomationEvent eventId, IRawElementProviderSimple provider,
AutomationEventArgs
e)
UIAutomationTypes (1)
System\Windows\Automation\AutomationEventArgs.cs (1)
14
public delegate void AutomationEventHandler( object sender,
AutomationEventArgs
e );