30 references to StructureChangeType
PresentationCore (6)
System\Windows\Automation\Peers\AutomationPeer.cs (6)
1943
StructureChangeType
flags;
1947
flags =
StructureChangeType
.ChildrenBulkRemoved;
1949
flags =
StructureChangeType
.ChildrenBulkAdded;
1951
flags =
StructureChangeType
.ChildrenInvalidated;
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)
1491
internal
StructureChangeType
_structureChangeType;
UIAutomationClientSideProviders (16)
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 (5)
325
StructureChangeType
type =
StructureChangeType
.ChildAdded; // Actual value is assigned below; any value will do here, to init the var
335
type =
StructureChangeType
.ChildAdded;
357
type =
StructureChangeType
.ChildRemoved;
368
type =
StructureChangeType
.ChildrenReordered;
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 (3)
1260
StructureChangeType
changeType = GetExpandCollapseState() == ExpandCollapseState.Expanded ?
StructureChangeType
.ChildrenBulkAdded :
StructureChangeType
.ChildrenBulkRemoved;
UIAutomationProvider (2)
MS\Internal\Automation\UiaCoreProviderApi.cs (2)
60
internal static void UiaRaiseStructureChangedEvent(IRawElementProviderSimple provider,
StructureChangeType
structureChangeType, int[] runtimeId)
132
private static extern int RawUiaRaiseStructureChangedEvent(IRawElementProviderSimple provider,
StructureChangeType
structureChangeType, int[] runtimeId, int runtimeIdLen);
UIAutomationTypes (3)
System\Windows\Automation\StructureChangedEventArgs.cs (3)
73
public StructureChangedEventArgs(
StructureChangeType
structureChangeType, int [] runtimeId)
105
public
StructureChangeType
StructureChangeType
121
private
StructureChangeType
_structureChangeType;