20 references to ProxyManager
UIAutomationClient (20)
MS\Internal\Automation\Accessible.cs (1)
83return ProxyManager.GetClassName(NativeMethods.HWND.Cast(hwnd)) == szClass;
MS\Internal\Automation\ClientEventManager.cs (1)
61ProxyManager.LoadDefaultProxies();
MS\Internal\Automation\FocusTracker.cs (4)
133provider = ProxyManager.ProxyProviderFromHwnd(NativeMethods.HWND.Cast(hwnd), idChild, UnsafeNativeMethods.OBJID_CLIENT); 138ClientSideProviderFactoryCallback factory = ProxyManager.NonClientMenuBarProxyFactory; 147ClientSideProviderFactoryCallback factory = ProxyManager.NonClientSysMenuProxyFactory; 162provider = ProxyManager.ProxyProviderFromHwnd(NativeMethods.HWND.Cast(hwnd), idChild, idObject);
MS\Internal\Automation\HwndProxyElementProvider.cs (6)
110return ProxyManager.GetClassName( _hwnd ); 170return Misc.IsWindowsFormsControl(ProxyManager.GetClassName(_hwnd)) ? "WinForm" : "Win32"; 1361IRawElementProviderSimple proxyProvider = ProxyManager.ProxyProviderFromHwnd(hwnd, 0, UnsafeNativeMethods.OBJID_CLIENT); 1373IRawElementProviderSimple nonClientProvider = ProxyManager.GetNonClientProvider(hwnd.h); 1896if (ProxyManager.GetClassName(hwnd).CompareTo("Progman") == 0) 2113IRawElementProviderSimple provider = ProxyManager.GetUser32FocusedMenuProvider(gti.hwndMenuOwner);
MS\Internal\Automation\ProxyManager.cs (3)
200ClientSideProviderFactoryCallback nonClientFactory = ProxyManager.NonClientProxyFactory; 210ClientSideProviderFactoryCallback menuFactory = ProxyManager.User32FocusedMenuProxyFactory; 357AssemblyName ourAssembly = Assembly.GetAssembly(typeof(ProxyManager)).GetName();
MS\Internal\Automation\UiaCoreApi.cs (2)
1578provider = ProxyManager.ProxyProviderFromHwnd(NativeMethods.HWND.Cast(hwnd), 0, UnsafeNativeMethods.OBJID_CLIENT); 1582provider = ProxyManager.GetNonClientProvider(hwnd);
MS\Internal\Automation\WindowShowOrOpenTracker.cs (1)
74string str = ProxyManager.GetClassName(nativeHwnd);
System\Windows\Automation\ClientSettings.cs (2)
45ProxyManager.RegisterProxyAssembly( assemblyName ); 56ProxyManager.RegisterWindowHandlers(clientSideProviderDescription);