20 references to ProxyManager
UIAutomationClient (20)
MS\Internal\Automation\Accessible.cs (1)
82return ProxyManager.GetClassName(NativeMethods.HWND.Cast(hwnd)) == szClass;
MS\Internal\Automation\ClientEventManager.cs (1)
60ProxyManager.LoadDefaultProxies();
MS\Internal\Automation\FocusTracker.cs (4)
132provider = ProxyManager.ProxyProviderFromHwnd(NativeMethods.HWND.Cast(hwnd), idChild, UnsafeNativeMethods.OBJID_CLIENT); 137ClientSideProviderFactoryCallback factory = ProxyManager.NonClientMenuBarProxyFactory; 146ClientSideProviderFactoryCallback factory = ProxyManager.NonClientSysMenuProxyFactory; 161provider = ProxyManager.ProxyProviderFromHwnd(NativeMethods.HWND.Cast(hwnd), idChild, idObject);
MS\Internal\Automation\HwndProxyElementProvider.cs (6)
109return ProxyManager.GetClassName( _hwnd ); 169return Misc.IsWindowsFormsControl(ProxyManager.GetClassName(_hwnd)) ? "WinForm" : "Win32"; 1360IRawElementProviderSimple proxyProvider = ProxyManager.ProxyProviderFromHwnd(hwnd, 0, UnsafeNativeMethods.OBJID_CLIENT); 1372IRawElementProviderSimple nonClientProvider = ProxyManager.GetNonClientProvider(hwnd.h); 1895if (ProxyManager.GetClassName(hwnd).CompareTo("Progman") == 0) 2112IRawElementProviderSimple provider = ProxyManager.GetUser32FocusedMenuProvider(gti.hwndMenuOwner);
MS\Internal\Automation\ProxyManager.cs (3)
199ClientSideProviderFactoryCallback nonClientFactory = ProxyManager.NonClientProxyFactory; 209ClientSideProviderFactoryCallback menuFactory = ProxyManager.User32FocusedMenuProxyFactory; 356AssemblyName ourAssembly = Assembly.GetAssembly(typeof(ProxyManager)).GetName();
MS\Internal\Automation\UiaCoreApi.cs (2)
1577provider = ProxyManager.ProxyProviderFromHwnd(NativeMethods.HWND.Cast(hwnd), 0, UnsafeNativeMethods.OBJID_CLIENT); 1581provider = ProxyManager.GetNonClientProvider(hwnd);
MS\Internal\Automation\WindowShowOrOpenTracker.cs (1)
73string str = ProxyManager.GetClassName(nativeHwnd);
System\Windows\Automation\ClientSettings.cs (2)
44ProxyManager.RegisterProxyAssembly( assemblyName ); 55ProxyManager.RegisterWindowHandlers(clientSideProviderDescription);