37 references to GetWindowStyle
UIAutomationClientSideProviders (37)
MS\Internal\AutomationProxies\ClickablePoint.cs (1)
91if (Misc.IsBitSet(Misc.GetWindowStyle(hwndCurrent), NativeMethods.WS_POPUP))
MS\Internal\AutomationProxies\EventManager.cs (1)
455int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\NonClientArea.cs (1)
751int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\ProxySimple.cs (1)
674return Misc.GetWindowStyle(_hwnd);
MS\Internal\AutomationProxies\WindowsButton.cs (3)
110style = Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK; 337new WindowsButton(hwndRadioButton, null, ButtonType.RadioButton, Misc.GetWindowStyle(hwndRadioButton) & NativeMethods.BS_TYPEMASK, accRadioButton) 409return new WindowsButton(hwndParent, null, ButtonType.GroupBox, Misc.GetWindowStyle(hwndParent) & NativeMethods.BS_TYPEMASK, accParent);
MS\Internal\AutomationProxies\WindowsComboBox.cs (1)
640return (Misc.GetWindowStyle(hwnd) & NativeMethods.CBS_COMBOTYPEMASK);
MS\Internal\AutomationProxies\WindowsContainer.cs (1)
139int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
497int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (5)
55return new WindowsButton(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 89return new WindowsButton(hwnd, null, WindowsButton.ButtonType.CheckBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 92return new WindowsButton(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 95return new WindowsButton(hwnd, null, WindowsButton.ButtonType.PushButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc); 98return new WindowsButton(hwnd, null, WindowsButton.ButtonType.RadioButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
70int style = Misc.GetWindowStyle(hwnd); 528if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LBS_COMBOBOX)) 1150int listBoxStyle = Misc.GetWindowStyle(_hwnd);
MS\Internal\AutomationProxies\WindowsListView.cs (6)
1184return ((Misc.GetWindowStyle(hwnd) & NativeMethods.LVS_TYPEMASK) == NativeMethods.LVS_REPORT); 1318return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_EDITLABELS); 1364return !Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_SINGLESEL); 1370return !Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_NOSCROLL); 1472return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.LVS_AUTOARRANGE); 1787return ((Misc.GetWindowStyle(hwnd) & NativeMethods.LVS_TYPEMASK) == NativeMethods.LVS_LIST);
MS\Internal\AutomationProxies\WindowsRebar.cs (1)
414if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), (int)CommonControlStyles.CCS_VERT))
MS\Internal\AutomationProxies\WindowsScroll.cs (2)
116int style = Misc.GetWindowStyle(hwnd); 161int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsScrollBar.cs (3)
418return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_VSCROLL); 423return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_HSCROLL); 429return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.SBS_VERT);
MS\Internal\AutomationProxies\WindowsStatic.cs (1)
92style = Misc.GetWindowStyle(hwnd) & NativeMethods.SS_TYPEMASK;
MS\Internal\AutomationProxies\WindowsStatusBar.cs (1)
835int style = Misc.GetWindowStyle(hwnd);
MS\Internal\AutomationProxies\WindowsSysHeader.cs (1)
299return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.HDS_HIDDEN);
MS\Internal\AutomationProxies\WindowsTab.cs (1)
869return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), (NativeMethods.TCS_BUTTONS | NativeMethods.TCS_MULTISELECT));
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
317if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_MINIMIZE)) 323if (Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.WS_MAXIMIZE))
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
641return Misc.IsBitSet(Misc.GetWindowStyle(hwnd), NativeMethods.UDS_HORZ);