8 references to GetClassName
UIAutomationClient (8)
MS\Internal\Automation\Accessible.cs (1)
82return ProxyManager.GetClassName(NativeMethods.HWND.Cast(hwnd)) == szClass;
MS\Internal\Automation\HwndProxyElementProvider.cs (3)
109return ProxyManager.GetClassName( _hwnd ); 169return Misc.IsWindowsFormsControl(ProxyManager.GetClassName(_hwnd)) ? "WinForm" : "Win32"; 1895if (ProxyManager.GetClassName(hwnd).CompareTo("Progman") == 0)
MS\Internal\Automation\ProxyManager.cs (3)
261string className = GetClassName( hwnd ); 282string parentClassName = GetClassName(hwndParent); 490string className = GetClassName (hwnd).ToLower (CultureInfo.InvariantCulture);
MS\Internal\Automation\WindowShowOrOpenTracker.cs (1)
73string str = ProxyManager.GetClassName(nativeHwnd);