8 references to GetClassName
UIAutomationClient (8)
MS\Internal\Automation\Accessible.cs (1)
102return ProxyManager.GetClassName(NativeMethods.HWND.Cast(hwnd)) == szClass;
MS\Internal\Automation\HwndProxyElementProvider.cs (3)
126return ProxyManager.GetClassName( _hwnd ); 188return Misc.IsWindowsFormsControl(ProxyManager.GetClassName(_hwnd)) ? "WinForm" : "Win32"; 1907if (ProxyManager.GetClassName(hwnd).CompareTo("Progman") == 0)
MS\Internal\Automation\ProxyManager.cs (3)
278string className = GetClassName( hwnd ); 299string parentClassName = GetClassName(hwndParent); 505string className = GetClassName (hwnd).ToLower (CultureInfo.InvariantCulture);
MS\Internal\Automation\WindowShowOrOpenTracker.cs (1)
85string str = ProxyManager.GetClassName(nativeHwnd);