8 references to GetClassName
UIAutomationClient (8)
MS\Internal\Automation\Accessible.cs (1)
83return ProxyManager.GetClassName(NativeMethods.HWND.Cast(hwnd)) == szClass;
MS\Internal\Automation\HwndProxyElementProvider.cs (3)
110return ProxyManager.GetClassName( _hwnd ); 170return Misc.IsWindowsFormsControl(ProxyManager.GetClassName(_hwnd)) ? "WinForm" : "Win32"; 1896if (ProxyManager.GetClassName(hwnd).CompareTo("Progman") == 0)
MS\Internal\Automation\ProxyManager.cs (3)
262string className = GetClassName( hwnd ); 283string parentClassName = GetClassName(hwndParent); 491string className = GetClassName (hwnd).ToLower (CultureInfo.InvariantCulture);
MS\Internal\Automation\WindowShowOrOpenTracker.cs (1)
74string str = ProxyManager.GetClassName(nativeHwnd);