16 instantiations of StructureChangedEventArgs
PresentationCore (3)
System\Windows\Automation\Peers\AutomationPeer.cs (3)
1959
new
StructureChangedEventArgs
(flags, rid));
1977
new
StructureChangedEventArgs
(StructureChangeType.ChildRemoved, rid));
1994
new
StructureChangedEventArgs
(StructureChangeType.ChildAdded, rid));
UIAutomationClient (3)
MS\Internal\Automation\ClientEventManager.cs (2)
603
StructureChangedEventArgs e = new
StructureChangedEventArgs
( StructureChangeType.ChildRemoved, runtimeId );
660
StructureChangedEventArgs e = new
StructureChangedEventArgs
( StructureChangeType.ChildAdded, rawEl.GetRuntimeId() );
MS\Internal\Automation\UiaCoreApi.cs (1)
672
return new
StructureChangedEventArgs
(scargs._structureChangeType, runtimeId);
UIAutomationClientSideProviders (10)
MS\Internal\AutomationProxies\EventManager.cs (4)
157
AutomationInteropProvider.RaiseStructureChangedEvent( el, new
StructureChangedEventArgs
( StructureChangeType.ChildrenReordered, el.MakeRuntimeId() ) );
399
AutomationInteropProvider.RaiseStructureChangedEvent (el, new
StructureChangedEventArgs
(StructureChangeType.ChildAdded, el.MakeRuntimeId()));
403
AutomationInteropProvider.RaiseStructureChangedEvent( el, new
StructureChangedEventArgs
( StructureChangeType.ChildRemoved, el.MakeRuntimeId() ) );
410
AutomationInteropProvider.RaiseStructureChangedEvent( el, new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, el.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (1)
375
StructureChangedEventArgs eventArgs = new
StructureChangedEventArgs
(type, runtimeId);
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
502
AutomationInteropProvider.RaiseStructureChangedEvent( wlb, new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, wlb.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\WindowsListView.cs (3)
127
AutomationInteropProvider.RaiseStructureChangedEvent( wlv, new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, wlv.MakeRuntimeId() ) );
1200
StructureChangedEventArgs change = new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, ( (WindowsListView)wlv ).MakeRuntimeId() );
1993
AutomationInteropProvider.RaiseStructureChangedEvent( parent, new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, parent.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\WindowsTreeView.cs (1)
1260
AutomationInteropProvider.RaiseStructureChangedEvent( this, new
StructureChangedEventArgs
( changeType, GetRuntimeId() ) );
8 references to StructureChangedEventArgs
UIAutomationClient (4)
MS\Internal\Automation\ClientEventManager.cs (2)
603
StructureChangedEventArgs
e = new StructureChangedEventArgs( StructureChangeType.ChildRemoved, runtimeId );
660
StructureChangedEventArgs
e = new StructureChangedEventArgs( StructureChangeType.ChildAdded, rawEl.GetRuntimeId() );
MS\Internal\Automation\InvokeHandlers.cs (2)
62
else if (args is
StructureChangedEventArgs
)
64
((StructureChangedEventHandler)clientCallback)(srcEl, (
StructureChangedEventArgs
)args);
UIAutomationClientSideProviders (2)
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (1)
375
StructureChangedEventArgs
eventArgs = new StructureChangedEventArgs(type, runtimeId);
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1200
StructureChangedEventArgs
change = new StructureChangedEventArgs( StructureChangeType.ChildrenInvalidated, ( (WindowsListView)wlv ).MakeRuntimeId() );
UIAutomationProvider (1)
System\Windows\Automation\Provider\AutomationInteropProvider.cs (1)
161
public static void RaiseStructureChangedEvent(IRawElementProviderSimple provider,
StructureChangedEventArgs
e)
UIAutomationTypes (1)
System\Windows\Automation\StructureChangedEventArgs.cs (1)
22
public delegate void StructureChangedEventHandler(object sender,
StructureChangedEventArgs
e);