37 references to GetWindowStyle
UIAutomationClientsideProviders (37)
MS\Internal\AutomationProxies\ClickablePoint.cs (1)
88if (Misc.IsBitSet(Misc.GetWindowStyle(hwndCurrent), NativeMethods.WS_POPUP))
MS\Internal\AutomationProxies\EventManager.cs (1)
462int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\NonClientArea.cs (1)
748int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\ProxySimple.cs (1)
681return Misc.GetWindowStyle(_hwnd);
MS\Internal\AutomationProxies\WindowsButton.cs (3)
121style = Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK; 348new WindowsButton(hwndRadioButton, null, ButtonType.RadioButton, Misc.GetWindowStyle(hwndRadioButton) & NativeMethods.BS_TYPEMASK, accRadioButton) 420return new WindowsButton(hwndParent, null, ButtonType.GroupBox, Misc.GetWindowStyle(hwndParent) & NativeMethods.BS_TYPEMASK, accParent);
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
653return (Misc.GetWindowStyle(hwnd) & NativeMethods.CBS_COMBOTYPEMASK);
MS\Internal\AutomationProxies\WindowsContainer.cs (1)
151int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
558int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (5)
61return new WindowsButton(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 95return new WindowsButton(hwnd, null, WindowsButton.ButtonType.CheckBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 98return new WindowsButton(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 101return new WindowsButton(hwnd, null, WindowsButton.ButtonType.PushButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 104return new WindowsButton(hwnd, null, WindowsButton.ButtonType.RadioButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
78int style = Misc.GetWindowStyle(hwnd); 536if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LBS_COMBOBOX)) 1158int listBoxStyle = Misc.GetWindowStyle(_hwnd);
MS\Internal\AutomationProxies\WindowsListView.cs (6)
1192return ((Misc.GetWindowStyle(hwnd) & NativeMethods.LVS_TYPEMASK) == NativeMethods.LVS_REPORT); 1326return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_EDITLABELS); 1372return !Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_SINGLESEL); 1378return !Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_NOSCROLL); 1480return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_AUTOARRANGE); 1795return ((Misc.GetWindowStyle(hwnd) & NativeMethods.LVS_TYPEMASK) == NativeMethods.LVS_LIST);
MS\Internal\AutomationProxies\WindowsRebar.cs (1)
429if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), (int)CommonControlStyles.CCS_VERT))
MS\Internal\AutomationProxies\WindowsScroll.cs (2)
122int style = Misc.GetWindowStyle(hwnd); 167int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (3)
430return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_VSCROLL); 435return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_HSCROLL); 441return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.SBS_VERT);
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
100style = Misc.GetWindowStyle(hwnd) & NativeMethods.SS_TYPEMASK;
MS\Internal\AutomationProxies\WindowsStatusBar.cs (1)
846int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsSysHeader.cs (1)
308return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.HDS_HIDDEN);
MS\Internal\AutomationProxies\WindowsTab.cs (1)
867return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), (NativeMethods.TCS_BUTTONS | NativeMethods.TCS_MULTISELECT));
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
329if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_MINIMIZE)) 335if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_MAXIMIZE))
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
654return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.UDS_HORZ);