30 references to StructureChangeType
PresentationCore (6)
System\Windows\Automation\Peers\AutomationPeer.cs (6)
1943StructureChangeType flags; 1947flags = StructureChangeType.ChildrenBulkRemoved; 1949flags = StructureChangeType.ChildrenBulkAdded; 1951flags = StructureChangeType.ChildrenInvalidated; 1978new StructureChangedEventArgs(StructureChangeType.ChildRemoved, rid)); 1995new StructureChangedEventArgs(StructureChangeType.ChildAdded, rid));
UIAutomationClient (3)
MS\Internal\Automation\ClientEventManager.cs (2)
604StructureChangedEventArgs e = new StructureChangedEventArgs( StructureChangeType.ChildRemoved, runtimeId ); 661StructureChangedEventArgs e = new StructureChangedEventArgs( StructureChangeType.ChildAdded, rawEl.GetRuntimeId() );
MS\Internal\Automation\UiaCoreApi.cs (1)
1491internal StructureChangeType _structureChangeType;
UIAutomationClientSideProviders (16)
MS\Internal\AutomationProxies\EventManager.cs (4)
158AutomationInteropProvider.RaiseStructureChangedEvent( el, new StructureChangedEventArgs( StructureChangeType.ChildrenReordered, el.MakeRuntimeId() ) ); 400AutomationInteropProvider.RaiseStructureChangedEvent (el, new StructureChangedEventArgs (StructureChangeType.ChildAdded, el.MakeRuntimeId())); 404AutomationInteropProvider.RaiseStructureChangedEvent( el, new StructureChangedEventArgs( StructureChangeType.ChildRemoved, el.MakeRuntimeId() ) ); 411AutomationInteropProvider.RaiseStructureChangedEvent( el, new StructureChangedEventArgs( StructureChangeType.ChildrenInvalidated, el.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (5)
325StructureChangeType type = StructureChangeType.ChildAdded; // Actual value is assigned below; any value will do here, to init the var 335type = StructureChangeType.ChildAdded; 357type = StructureChangeType.ChildRemoved; 368type = StructureChangeType.ChildrenReordered;
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
503AutomationInteropProvider.RaiseStructureChangedEvent( wlb, new StructureChangedEventArgs( StructureChangeType.ChildrenInvalidated, wlb.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\WindowsListView.cs (3)
128AutomationInteropProvider.RaiseStructureChangedEvent( wlv, new StructureChangedEventArgs( StructureChangeType.ChildrenInvalidated, wlv.MakeRuntimeId() ) ); 1201StructureChangedEventArgs change = new StructureChangedEventArgs( StructureChangeType.ChildrenInvalidated, ( (WindowsListView)wlv ).MakeRuntimeId() ); 1996AutomationInteropProvider.RaiseStructureChangedEvent( parent, new StructureChangedEventArgs( StructureChangeType.ChildrenInvalidated, parent.MakeRuntimeId() ) );
MS\Internal\AutomationProxies\WindowsTreeView.cs (3)
1260StructureChangeType changeType = GetExpandCollapseState() == ExpandCollapseState.Expanded ? StructureChangeType.ChildrenBulkAdded : StructureChangeType.ChildrenBulkRemoved;
UIAutomationProvider (2)
MS\Internal\Automation\UiaCoreProviderApi.cs (2)
60internal static void UiaRaiseStructureChangedEvent(IRawElementProviderSimple provider, StructureChangeType structureChangeType, int[] runtimeId) 132private static extern int RawUiaRaiseStructureChangedEvent(IRawElementProviderSimple provider, StructureChangeType structureChangeType, int[] runtimeId, int runtimeIdLen);
UIAutomationTypes (3)
System\Windows\Automation\StructureChangedEventArgs.cs (3)
73public StructureChangedEventArgs(StructureChangeType structureChangeType, int [] runtimeId) 105public StructureChangeType StructureChangeType 121private StructureChangeType _structureChangeType;