41 references to WindowStyle
UIAutomationClientSideProviders (41)
MS\Internal\AutomationProxies\NonClientArea.cs (2)
507int style = WindowStyle; 529int style = WindowStyle;
MS\Internal\AutomationProxies\ProxySimple.cs (1)
289if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_TABSTOP))
MS\Internal\AutomationProxies\WindowsButton.cs (1)
605if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_CHILD))
MS\Internal\AutomationProxies\WindowsContainer.cs (1)
123int style = WindowStyle;
MS\Internal\AutomationProxies\WindowsEditBox.cs (3)
268int styles = WindowStyle; 672return (!SafeNativeMethods.IsWindowEnabled(WindowHandle) || Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY)); 702if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_VSCROLL))
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (2)
609rval = GetCapStyle(_provider.WindowStyle); 629rval = GetHorizontalTextAlignment(_provider.WindowStyle);
MS\Internal\AutomationProxies\WindowsListBox.cs (3)
614return (0 != (WindowStyle & (NativeMethods.LBS_MULTIPLESEL | NativeMethods.LBS_EXTENDEDSEL))); 621return ((WindowStyle & NativeMethods.LBS_OWNERDRAWFIXED) == NativeMethods.LBS_OWNERDRAWFIXED) && 622((WindowStyle & NativeMethods.LBS_WANTKEYBOARDINPUT) == NativeMethods.LBS_WANTKEYBOARDINPUT);
MS\Internal\AutomationProxies\WindowsRichEdit.cs (4)
168if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY)) 174if (Misc.IsBitSet(WindowStyle, NativeMethods.ES_NUMBER) && !WindowsFormsHelper.IsWindowsFormsControl(_hwnd)) 443return (WindowStyle & NativeMethods.ES_READONLY) == NativeMethods.ES_READONLY; 461Misc.IsBitSet(WindowStyle, NativeMethods.ES_READONLY));
MS\Internal\AutomationProxies\WindowsSlider.cs (2)
256return (Misc.IsBitSet(WindowStyle, NativeMethods.TBS_VERT)); 264if ((this.WindowStyle & NativeMethods.TBS_REVERSED) != 0)
MS\Internal\AutomationProxies\WindowsSysHeader.cs (3)
196return Misc.IsBitSet(WindowStyle, NativeMethods.HDS_VERT) ? OrientationType.Vertical : OrientationType.Horizontal; 654return (Misc.IsBitSet(WindowStyle, NativeMethods.HDS_BUTTONS)); 660return (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)
287if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 297if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE)) 318if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_DISABLED)) 327int style = WindowStyle; 339int style = WindowStyle; 372if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 381if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE)) 412if ((WindowStyle & NativeMethods.WS_MINIMIZE) != 0) 423if ((WindowStyle & NativeMethods.WS_MAXIMIZE) != 0) 430if ((WindowStyle & NativeMethods.WS_MINIMIZE) != 0)
MS\Internal\AutomationProxies\WindowsTooltip.cs (2)
269if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MINIMIZE)) 278if (Misc.IsBitSet(WindowStyle, NativeMethods.WS_MAXIMIZE))
MS\Internal\AutomationProxies\WindowsTreeView.cs (2)
1479return Misc.IsBitSet(WindowStyle, NativeMethods.TVS_EDITLABELS); 1499bool isCheckbox = Misc.IsBitSet(WindowStyle, NativeMethods.TVS_CHECKBOXES);