1 instantiation of ElementProxy
PresentationCore (1)
Core\CSharp\MS\Internal\Automation\ElementProxy.cs (1)
292result = new ElementProxy(peer);
11 references to ElementProxy
PresentationCore (11)
Core\CSharp\MS\Internal\Automation\ElementProxy.cs (3)
271internal static ElementProxy StaticWrap(AutomationPeer peer, AutomationPeer referencePeer) 273ElementProxy result = null; 288result = peer.ElementProxyWeakReference.Target as ElementProxy;
Core\CSharp\MS\Internal\Automation\TextProviderWrapper.cs (1)
68if (!(childElement is ElementProxy))
Core\CSharp\System\Windows\Automation\Peers\AutomationPeer.cs (6)
1724return ElementProxy.StaticWrap(peer, referencePeer); 1730return ElementProxy.StaticWrap(peer, referencePeer); 1769ElementProxy proxy = provider as ElementProxy; 2162if(value.Target as ElementProxy != null) 2391private static object GetLabeledBy(AutomationPeer peer) { AutomationPeer byPeer = peer.GetLabeledBy(); return ElementProxy.StaticWrap(byPeer, peer); }
Core\CSharp\System\Windows\Interop\HwndTarget.cs (1)
1590IRawElementProviderSimple el = ElementProxy.StaticWrap(peer, peer);