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