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