41 references to WindowStyle
UIAutomationClientSideProviders (41)
MS\Internal\AutomationProxies\NonClientArea.cs (2)
500int style = WindowStyle; 522int style = WindowStyle;
MS\Internal\AutomationProxies\ProxySimple.cs (1)
282if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_TABSTOP))
MS\Internal\AutomationProxies\WindowsButton.cs (1)
601if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_CHILD))
MS\Internal\AutomationProxies\WindowsContainer.cs (1)
122int style = WindowStyle;
MS\Internal\AutomationProxies\WindowsEditBox.cs (3)
267int styles = WindowStyle; 671return (!SafeNativeMethods.IsWindowEnabled(WindowHandle) || Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY)); 701if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_VSCROLL))
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (2)
605rval = GetCapStyle(_provider.WindowStyle); 625rval = GetHorizontalTextAlignment(_provider.WindowStyle);
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
604return (0 != (WindowStyle & (NativeMethods.LBS_MULTIPLESEL | NativeMethods.LBS_EXTENDEDSEL))); 611return ((WindowStyle & NativeMethods.LBS_OWNERDRAWFIXED) == NativeMethods.LBS_OWNERDRAWFIXED) && 612((WindowStyle & NativeMethods.LBS_WANTKEYBOARDINPUT) == NativeMethods.LBS_WANTKEYBOARDINPUT);
MS\Internal\AutomationProxies\WindowsRichEdit.cs (4)
167if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY)) 173if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_NUMBER) && !WindowsFormsHelper.IsWindowsFormsControl(_hwnd)) 442return (WindowStyle & NativeMethods.ES_READONLY) == NativeMethods.ES_READONLY; 460Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY));
MS\Internal\AutomationProxies\WindowsSlider.cs (2)
255return (Misc.IsBitSet(WindowStyle, NativeMethods.TBS_VERT)); 263if ((this.WindowStyle & NativeMethods.TBS_REVERSED) != 0)
MS\Internal\AutomationProxies\WindowsSysHeader.cs (3)
193return Misc.IsBitSet(WindowStyle, NativeMethods.HDS_VERT) ? OrientationType.Vertical : OrientationType.Horizontal; 648return (Misc.IsBitSet(WindowStyle, NativeMethods.HDS_BUTTONS)); 654return (Misc.IsBitSet(WindowStyle, NativeMethods.HDS_FILTERBAR));
MS\Internal\AutomationProxies\WindowsTab.cs (5)
437return !Misc.IsBitSet(WindowStyle, NativeMethods.TCS_BUTTONS); 780int style = WindowStyle; 993if (Misc.IsBitSet(WindowStyle, NativeMethods.TCS_FOCUSNEVER)) 1147else if (Misc.IsBitSet(WindowStyle, NativeMethods.TCS_BUTTONS)) 1288if (Misc.IsBitSet(WindowStyle, (NativeMethods.TCS_BUTTONS | NativeMethods.TCS_FOCUSNEVER)))
MS\Internal\AutomationProxies\WindowsTitleBar.cs (10)
286if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 296if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE)) 317if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_DISABLED)) 326int style = WindowStyle; 338int style = WindowStyle; 371if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 380if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE)) 411if ((WindowStyle & NativeMethods.WS_MINIMIZE) != 0) 422if ((WindowStyle & NativeMethods.WS_MAXIMIZE) != 0) 429if ((WindowStyle & NativeMethods.WS_MINIMIZE) != 0)
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
265if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 274if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE))
MS\Internal\AutomationProxies\WindowsTreeView.cs (2)
1474return Misc.IsBitSet(WindowStyle, NativeMethods.TVS_EDITLABELS); 1494bool isCheckbox = Misc.IsBitSet(WindowStyle, NativeMethods.TVS_CHECKBOXES);