41 references to WindowStyle
UIAutomationClientsideProviders (41)
MS\Internal\AutomationProxies\NonClientArea.cs (2)
508int style = WindowStyle; 530int style = WindowStyle;
MS\Internal\AutomationProxies\ProxySimple.cs (1)
300if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_TABSTOP))
MS\Internal\AutomationProxies\WindowsButton.cs (1)
621if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_CHILD))
MS\Internal\AutomationProxies\WindowsContainer.cs (1)
140int style = WindowStyle;
MS\Internal\AutomationProxies\WindowsEditBox.cs (3)
306int styles = WindowStyle; 737return (!SafeNativeMethods.IsWindowEnabled(WindowHandle) || Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY)); 767if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_VSCROLL))
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (2)
631rval = GetCapStyle(_provider.WindowStyle); 651rval = GetHorizontalTextAlignment(_provider.WindowStyle);
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
626return (0 != (WindowStyle & (NativeMethods.LBS_MULTIPLESEL | NativeMethods.LBS_EXTENDEDSEL))); 633return ((WindowStyle & NativeMethods.LBS_OWNERDRAWFIXED) == NativeMethods.LBS_OWNERDRAWFIXED) && 634((WindowStyle & NativeMethods.LBS_WANTKEYBOARDINPUT) == NativeMethods.LBS_WANTKEYBOARDINPUT);
MS\Internal\AutomationProxies\WindowsRichEdit.cs (4)
184if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY)) 190if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_NUMBER) && !WindowsFormsHelper.IsWindowsFormsControl(_hwnd)) 487return (WindowStyle & NativeMethods.ES_READONLY) == NativeMethods.ES_READONLY; 505Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY));
MS\Internal\AutomationProxies\WindowsSlider.cs (2)
272return (Misc.IsBitSet(WindowStyle, NativeMethods.TBS_VERT)); 280if ((this.WindowStyle & NativeMethods.TBS_REVERSED) != 0)
MS\Internal\AutomationProxies\WindowsSysHeader.cs (3)
209return Misc.IsBitSet(WindowStyle, NativeMethods.HDS_VERT) ? OrientationType.Vertical : OrientationType.Horizontal; 667return (Misc.IsBitSet(WindowStyle, NativeMethods.HDS_BUTTONS)); 673return (Misc.IsBitSet(WindowStyle, NativeMethods.HDS_FILTERBAR));
MS\Internal\AutomationProxies\WindowsTab.cs (5)
444return !Misc.IsBitSet(WindowStyle, NativeMethods.TCS_BUTTONS); 786int style = WindowStyle; 999if (Misc.IsBitSet(WindowStyle, NativeMethods.TCS_FOCUSNEVER)) 1153else if (Misc.IsBitSet(WindowStyle, NativeMethods.TCS_BUTTONS)) 1294if (Misc.IsBitSet(WindowStyle, (NativeMethods.TCS_BUTTONS | NativeMethods.TCS_FOCUSNEVER)))
MS\Internal\AutomationProxies\WindowsTitleBar.cs (10)
299if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 309if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE)) 330if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_DISABLED)) 339int style = WindowStyle; 351int style = WindowStyle; 384if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 393if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE)) 424if ((WindowStyle & NativeMethods.WS_MINIMIZE) != 0) 435if ((WindowStyle & NativeMethods.WS_MAXIMIZE) != 0) 442if ((WindowStyle & NativeMethods.WS_MINIMIZE) != 0)
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
285if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 294if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE))
MS\Internal\AutomationProxies\WindowsTreeView.cs (2)
1490return Misc.IsBitSet(WindowStyle, NativeMethods.TVS_EDITLABELS); 1510bool isCheckbox = Misc.IsBitSet(WindowStyle, NativeMethods.TVS_CHECKBOXES);