26 references to GetClassName
UIAutomationClientSideProviders (26)
MS\Internal\AutomationProxies\Misc.cs (1)
867if (GetClassName(hwnd).CompareTo("Progman") == 0)
MS\Internal\AutomationProxies\MSAANativeProvider.cs (2)
363string className = Misc.GetClassName(_hwnd); 1059string className = Misc.GetClassName(hwnd);
MS\Internal\AutomationProxies\NonClientArea.cs (2)
651if (Misc.GetClassName(hwnd) == "ComboLBox") 714if (Misc.GetClassName(hwnd) == "ComboLBox")
MS\Internal\AutomationProxies\WindowsButton.cs (4)
549if (!Misc.GetClassName(_hwnd).Equals("Button")) 564if (Misc.GetClassName(hwndParent).Equals("Shell_TrayWnd")) 575if (!Misc.GetClassName(_hwnd).Equals("Button")) 583if (Misc.GetClassName(hwndParent).Equals("Desktop More Programs Pane"))
MS\Internal\AutomationProxies\WindowsComboBox.cs (3)
149if (Misc.GetClassName(_hwnd).Equals("Internet Explorer_TridentCmboBx")) 672return string.Equals(Misc.GetClassName(hwndEx), ComboboxEx32, StringComparison.OrdinalIgnoreCase); 705if (Misc.GetClassName(hwnd).Equals("Internet Explorer_TridentCmboBx"))
MS\Internal\AutomationProxies\WindowsEditBox.cs (2)
930string classname = Misc.GetClassName(hwndParent); 946string classname = Misc.GetClassName(hwndParent);
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (1)
130return IsWindowsFormsControl(Misc.GetClassName(hwnd));
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
723if (Misc.GetClassName(_hwnd).Equals("Internet Explorer_TridentLstBox"))
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1643string className = Misc.GetClassName(Misc.GetParent(_hwnd));
MS\Internal\AutomationProxies\WindowsListViewSubItem.cs (1)
172if (Misc.GetClassName(ancestor) == "Desktop Search Open View")
MS\Internal\AutomationProxies\WindowsRichEdit.cs (1)
684return Misc.GetClassName(hwndParent).Equals("MsoCommandBar");
MS\Internal\AutomationProxies\WindowsScroll.cs (1)
229string classname = Misc.GetClassName(hwnd);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (2)
555string classname = Misc.GetClassName(_hwnd); 665string classname = Misc.GetClassName(_hwnd);
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
68string className = Misc.GetClassName(hwnd).ToLower(System.Globalization.CultureInfo.InvariantCulture);
MS\Internal\AutomationProxies\WindowsSysHeader.cs (2)
78if (Misc.GetClassName(hwndParent).Contains("SysListView32", StringComparison.Ordinal)) 247if (Misc.GetClassName(hwndParent).Contains("SysListView32", StringComparison.Ordinal))
MS\Internal\AutomationProxies\WindowsToolbar.cs (1)
381if(Misc.GetClassName(hwndParent) != "MSTaskSwWClass")