20 references to ProxyGetClassName
UIAutomationClientSideProviders (20)
MS\Internal\AutomationProxies\Misc.cs (1)
1897if (!ProxyGetClassName(hwnd).Equals("tooltips_class32"))
MS\Internal\AutomationProxies\NonClientArea.cs (3)
108System.Diagnostics.Debug.Assert(idChild == 0, string.Format(CultureInfo.CurrentCulture, "Invalid Child Id, idChild == {2}\n\rClassName: \"{0}\"\n\rhwnd = 0x{1:x8}", Misc.ProxyGetClassName(hwnd), hwnd.ToInt32(), idChild)); 464if (Misc.ProxyGetClassName(_hwnd) == "SysListView32") 476if (Misc.ProxyGetClassName(_hwnd) == "SysListView32")
MS\Internal\AutomationProxies\WindowsContainer.cs (1)
27string className = Misc.ProxyGetClassName(hwnd);
MS\Internal\AutomationProxies\WindowsMenu.cs (2)
911return string.Equals(Misc.ProxyGetClassName(hwnd), WindowsMenu.MenuClassName, StringComparison.OrdinalIgnoreCase); 2245if (gui.hwndCapture != IntPtr.Zero && Misc.ProxyGetClassName(gui.hwndCapture) == "ListBox")
MS\Internal\AutomationProxies\WindowsScroll.cs (1)
160string className = Misc.ProxyGetClassName(hwnd);
MS\Internal\AutomationProxies\WindowsSpinner.cs (2)
66if (!Misc.ProxyGetClassName(hwndBuddy).Contains("EDIT", StringComparison.OrdinalIgnoreCase)) 279string className = Misc.ProxyGetClassName(hwndChild);
MS\Internal\AutomationProxies\WindowsTab.cs (2)
724&& Misc.ProxyGetClassName(hwndParent).Contains("SysTabControl32")) 759className = Misc.ProxyGetClassName(childHwnd);
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
173string className = Misc.ProxyGetClassName(hwnd); 182string className = Misc.ProxyGetClassName(_hwnd);
MS\Internal\AutomationProxies\WindowsUpDown.cs (3)
294return Misc.ProxyGetClassName(hwndParent).Contains("SysTabControl32"); 368return hwndBuddy != IntPtr.Zero && Misc.ProxyGetClassName(hwndBuddy).Contains("EDIT", StringComparison.OrdinalIgnoreCase); 625hwndParent = Misc.ProxyGetClassName(hwndParent).Contains("SysTabControl32") ? hwndParent : IntPtr.Zero;
MS\Internal\AutomationProxies\WinEventTracker.cs (1)
475return Misc.ProxyGetClassName(Process.GetProcessById(processId).MainWindowHandle).Equals("ConsoleWindowClass");
MS\Internal\AutomationProxies\WinFormsSpinner.cs (2)
154if (Misc.ProxyGetClassName(hwndLastChild).Contains("Edit", StringComparison.OrdinalIgnoreCase)) 162if (Misc.ProxyGetClassName(hwndFirstChild).Contains("Edit", StringComparison.OrdinalIgnoreCase))