16 instantiations of StructureChangedEventArgs
PresentationCore (3)
System\Windows\Automation\Peers\AutomationPeer.cs (3)
1960
new
StructureChangedEventArgs
(flags, rid));
1978
new
StructureChangedEventArgs
(StructureChangeType.ChildRemoved, rid));
1995
new
StructureChangedEventArgs
(StructureChangeType.ChildAdded, rid));
UIAutomationClient (3)
MS\Internal\Automation\ClientEventManager.cs (2)
604
StructureChangedEventArgs e = new
StructureChangedEventArgs
( StructureChangeType.ChildRemoved, runtimeId );
661
StructureChangedEventArgs e = new
StructureChangedEventArgs
( StructureChangeType.ChildAdded, rawEl.GetRuntimeId() );
MS\Internal\Automation\UiaCoreApi.cs (1)
673
return new
StructureChangedEventArgs
(scargs._structureChangeType, runtimeId);
UIAutomationClientSideProviders (10)
MS\Internal\AutomationProxies\EventManager.cs (4)
158
AutomationInteropProvider.RaiseStructureChangedEvent( el, new
StructureChangedEventArgs
( StructureChangeType.ChildrenReordered, el.MakeRuntimeId() ) );
400
AutomationInteropProvider.RaiseStructureChangedEvent (el, new
StructureChangedEventArgs
(StructureChangeType.ChildAdded, el.MakeRuntimeId()));
404
AutomationInteropProvider.RaiseStructureChangedEvent( el, new
StructureChangedEventArgs
( StructureChangeType.ChildRemoved, el.MakeRuntimeId() ) );
411
AutomationInteropProvider.RaiseStructureChangedEvent( el, new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, el.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (1)
376
StructureChangedEventArgs eventArgs = new
StructureChangedEventArgs
(type, runtimeId);
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
503
AutomationInteropProvider.RaiseStructureChangedEvent( wlb, new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, wlb.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\WindowsListView.cs (3)
128
AutomationInteropProvider.RaiseStructureChangedEvent( wlv, new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, wlv.MakeRuntimeId() ) );
1201
StructureChangedEventArgs change = new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, ( (WindowsListView)wlv ).MakeRuntimeId() );
1996
AutomationInteropProvider.RaiseStructureChangedEvent( parent, new
StructureChangedEventArgs
( StructureChangeType.ChildrenInvalidated, parent.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\WindowsTreeView.cs (1)
1261
AutomationInteropProvider.RaiseStructureChangedEvent( this, new
StructureChangedEventArgs
( changeType, GetRuntimeId() ) );
8 references to StructureChangedEventArgs
UIAutomationClient (4)
MS\Internal\Automation\ClientEventManager.cs (2)
604
StructureChangedEventArgs
e = new StructureChangedEventArgs( StructureChangeType.ChildRemoved, runtimeId );
661
StructureChangedEventArgs
e = new StructureChangedEventArgs( StructureChangeType.ChildAdded, rawEl.GetRuntimeId() );
MS\Internal\Automation\InvokeHandlers.cs (2)
63
else if (args is
StructureChangedEventArgs
)
65
((StructureChangedEventHandler)clientCallback)(srcEl, (
StructureChangedEventArgs
)args);
UIAutomationClientSideProviders (2)
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (1)
376
StructureChangedEventArgs
eventArgs = new StructureChangedEventArgs(type, runtimeId);
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1201
StructureChangedEventArgs
change = new StructureChangedEventArgs( StructureChangeType.ChildrenInvalidated, ( (WindowsListView)wlv ).MakeRuntimeId() );
UIAutomationProvider (1)
System\Windows\Automation\Provider\AutomationInteropProvider.cs (1)
162
public static void RaiseStructureChangedEvent(IRawElementProviderSimple provider,
StructureChangedEventArgs
e)
UIAutomationTypes (1)
System\Windows\Automation\StructureChangedEventArgs.cs (1)
23
public delegate void StructureChangedEventHandler(object sender,
StructureChangedEventArgs
e);