30 references to StructureChangeType
PresentationCore (6)
System\Windows\Automation\Peers\AutomationPeer.cs (6)
1942StructureChangeType flags; 1946flags = StructureChangeType.ChildrenBulkRemoved; 1948flags = StructureChangeType.ChildrenBulkAdded; 1950flags = StructureChangeType.ChildrenInvalidated; 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)
1490internal StructureChangeType _structureChangeType;
UIAutomationClientSideProviders (16)
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 (5)
324StructureChangeType type = StructureChangeType.ChildAdded; // Actual value is assigned below; any value will do here, to init the var 334type = StructureChangeType.ChildAdded; 356type = StructureChangeType.ChildRemoved; 367type = StructureChangeType.ChildrenReordered;
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 (3)
1259StructureChangeType changeType = GetExpandCollapseState() == ExpandCollapseState.Expanded ? StructureChangeType.ChildrenBulkAdded : StructureChangeType.ChildrenBulkRemoved;
UIAutomationProvider (2)
MS\Internal\Automation\UiaCoreProviderApi.cs (2)
59internal static void UiaRaiseStructureChangedEvent(IRawElementProviderSimple provider, StructureChangeType structureChangeType, int[] runtimeId) 131private static extern int RawUiaRaiseStructureChangedEvent(IRawElementProviderSimple provider, StructureChangeType structureChangeType, int[] runtimeId, int runtimeIdLen);
UIAutomationTypes (3)
System\Windows\Automation\StructureChangedEventArgs.cs (3)
72public StructureChangedEventArgs(StructureChangeType structureChangeType, int [] runtimeId) 104public StructureChangeType StructureChangeType 120private StructureChangeType _structureChangeType;