10 instantiations of AutomationPropertyChangedEventArgs
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1878
AutomationPropertyChangedEventArgs e = new
AutomationPropertyChangedEventArgs
(propertyId, oldValue, newValue);
UIAutomationClient (4)
MS\Internal\Automation\BoundingRectTracker.cs (1)
109
AutomationPropertyChangedEventArgs e = new
AutomationPropertyChangedEventArgs
(
MS\Internal\Automation\UiaCoreApi.cs (1)
666
return new
AutomationPropertyChangedEventArgs
(propertyId, pcargs._oldValue, pcargs._newValue);
MS\Internal\Automation\WindowInteractionStateTracker.cs (1)
110
AutomationPropertyChangedEventArgs e = new
AutomationPropertyChangedEventArgs
(
MS\Internal\Automation\WindowVisualStateTracker.cs (1)
105
AutomationPropertyChangedEventArgs e = new
AutomationPropertyChangedEventArgs
(
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\EventManager.cs (2)
149
el.RecursiveRaiseEvents(ValuePattern.IsReadOnlyProperty, new
AutomationPropertyChangedEventArgs
(ValuePattern.IsReadOnlyProperty, null, fIsReadOnly));
443
AutomationInteropProvider.RaiseAutomationPropertyChangedEvent(el, new
AutomationPropertyChangedEventArgs
(property, null, propertyValue));
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (1)
304
AutomationPropertyChangedEventArgs eventArgs = new
AutomationPropertyChangedEventArgs
(property, null, newValue);
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1048
AutomationInteropProvider.RaiseAutomationPropertyChangedEvent(parent, new
AutomationPropertyChangedEventArgs
((AutomationProperty)idProp, null, propertyValue));
MS\Internal\AutomationProxies\WindowsTreeView.cs (1)
1266
AutomationInteropProvider.RaiseAutomationPropertyChangedEvent(this, new
AutomationPropertyChangedEventArgs
(ExpandCollapsePattern.ExpandCollapseStateProperty, null, GetExpandCollapseState()));
11 references to AutomationPropertyChangedEventArgs
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1878
AutomationPropertyChangedEventArgs
e = new AutomationPropertyChangedEventArgs(propertyId, oldValue, newValue);
UIAutomationClient (5)
MS\Internal\Automation\BoundingRectTracker.cs (1)
109
AutomationPropertyChangedEventArgs
e = new AutomationPropertyChangedEventArgs(
MS\Internal\Automation\InvokeHandlers.cs (2)
59
if (args is
AutomationPropertyChangedEventArgs
)
61
((AutomationPropertyChangedEventHandler)clientCallback)(srcEl, (
AutomationPropertyChangedEventArgs
)args);
MS\Internal\Automation\WindowInteractionStateTracker.cs (1)
110
AutomationPropertyChangedEventArgs
e = new AutomationPropertyChangedEventArgs(
MS\Internal\Automation\WindowVisualStateTracker.cs (1)
105
AutomationPropertyChangedEventArgs
e = new AutomationPropertyChangedEventArgs(
UIAutomationClientSideProviders (3)
MS\Internal\AutomationProxies\MSAAEventDispatcher.cs (1)
304
AutomationPropertyChangedEventArgs
eventArgs = new AutomationPropertyChangedEventArgs(property, null, newValue);
MS\Internal\AutomationProxies\ProxyFragment.cs (1)
188
override internal void RecursiveRaiseEvents (object idProp,
AutomationPropertyChangedEventArgs
e)
MS\Internal\AutomationProxies\ProxySimple.cs (1)
392
internal virtual void RecursiveRaiseEvents(object idProp,
AutomationPropertyChangedEventArgs
e)
UIAutomationProvider (1)
System\Windows\Automation\Provider\AutomationInteropProvider.cs (1)
95
public static void RaiseAutomationPropertyChangedEvent(IRawElementProviderSimple element,
AutomationPropertyChangedEventArgs
e)
UIAutomationTypes (1)
System\Windows\Automation\AutomationPropertyChangedEventArgs.cs (1)
15
public delegate void AutomationPropertyChangedEventHandler( object sender,
AutomationPropertyChangedEventArgs
e );