37 references to GetWindowStyle
UIAutomationClientSideProviders (37)
MS\Internal\AutomationProxies\ClickablePoint.cs (1)
84if (Misc.IsBitSet(Misc.GetWindowStyle(hwndCurrent), NativeMethods.WS_POPUP))
MS\Internal\AutomationProxies\EventManager.cs (1)
448int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\NonClientArea.cs (1)
728int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\ProxySimple.cs (1)
662return Misc.GetWindowStyle(_hwnd);
MS\Internal\AutomationProxies\WindowsButton.cs (3)
104style = Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK; 328new WindowsButton(hwndRadioButton, null, ButtonType.RadioButton, Misc.GetWindowStyle(hwndRadioButton) & NativeMethods.BS_TYPEMASK, accRadioButton) 400return new WindowsButton(hwndParent, null, ButtonType.GroupBox, Misc.GetWindowStyle(hwndParent) & NativeMethods.BS_TYPEMASK, accParent);
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
631return (Misc.GetWindowStyle(hwnd) & NativeMethods.CBS_COMBOTYPEMASK);
MS\Internal\AutomationProxies\WindowsContainer.cs (1)
133int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
492int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (5)
50return new WindowsButton(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 84return new WindowsButton(hwnd, null, WindowsButton.ButtonType.CheckBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 87return new WindowsButton(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 90return new WindowsButton(hwnd, null, WindowsButton.ButtonType.PushButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 93return new WindowsButton(hwnd, null, WindowsButton.ButtonType.RadioButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
65int style = Misc.GetWindowStyle(hwnd); 517if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LBS_COMBOBOX)) 1136int listBoxStyle = Misc.GetWindowStyle(_hwnd);
MS\Internal\AutomationProxies\WindowsListView.cs (6)
1177return ((Misc.GetWindowStyle(hwnd) & NativeMethods.LVS_TYPEMASK) == NativeMethods.LVS_REPORT); 1311return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_EDITLABELS); 1357return !Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_SINGLESEL); 1363return !Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_NOSCROLL); 1468return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_AUTOARRANGE); 1783return ((Misc.GetWindowStyle(hwnd) & NativeMethods.LVS_TYPEMASK) == NativeMethods.LVS_LIST);
MS\Internal\AutomationProxies\WindowsRebar.cs (1)
412if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), (int)CommonControlStyles.CCS_VERT))
MS\Internal\AutomationProxies\WindowsScroll.cs (2)
111int style = Misc.GetWindowStyle(hwnd); 156int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (3)
411return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_VSCROLL); 416return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_HSCROLL); 422return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.SBS_VERT);
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
88style = Misc.GetWindowStyle(hwnd) & NativeMethods.SS_TYPEMASK;
MS\Internal\AutomationProxies\WindowsStatusBar.cs (1)
832int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsSysHeader.cs (1)
292return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.HDS_HIDDEN);
MS\Internal\AutomationProxies\WindowsTab.cs (1)
861return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), (NativeMethods.TCS_BUTTONS | NativeMethods.TCS_MULTISELECT));
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
309if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_MINIMIZE)) 315if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_MAXIMIZE))
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
633return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.UDS_HORZ);