User32.WindowStylesEx Enumeration
A bit-field of flags for specifying window styles exes.
Syntax
[Flags()] public enum User32.WindowStylesEx : System.Enum
[Flags()] public enum class User32.WindowStylesEx : public System.Enum
Members
Member | Description |
---|---|
WS_EX_ACCEPTFILES | Specifies a window that accepts drag-drop files. |
WS_EX_APPWINDOW | Forces a top-level window onto the taskbar when the window is visible. |
WS_EX_CLIENTEDGE | Specifies a window that has a border with a sunken edge. |
WS_EX_COMPOSITED | Specifies a window that paints all descendants in bottom-to-top painting order using double-buffering. This cannot be used if the window has a class style of either CS_OWNDC or CS_CLASSDC. This style is not supported in Windows 2000. |
WS_EX_CONTEXTHELP | Specifies a window that includes a question mark in the title bar. When the user clicks the question mark, the cursor changes to a question mark with a pointer. If the user then clicks a child window, the child receives a WM_HELP message. The child window should pass the message to the parent window procedure, which should call the WinHelp function using the HELP_WM_HELP command. The Help application displays a pop-up window that typically contains help for the child window. WS_EX_CONTEXTHELP cannot be used with the WS_MAXIMIZEBOX or WS_MINIMIZEBOX styles. |
WS_EX_CONTROLPARENT | Specifies a window which contains child windows that should take part in dialog box navigation. If this style is specified, the dialog manager recurses into children of this window when performing navigation operations such as handling the TAB key, an arrow key, or a keyboard mnemonic. |
WS_EX_DLGMODALFRAME | Specifies a window that has a double border. |
WS_EX_LAYERED | Specifies a window that is a layered window. This cannot be used for child windows or if the window has a class style of either CS_OWNDC or CS_CLASSDC. |
WS_EX_LAYOUTRTL | Specifies a window with the horizontal origin on the right edge. Increasing horizontal values advance to the left. The shell language must support reading-order alignment for this to take effect. |
WS_EX_LEFT | Specifies a window that has generic left-aligned properties. This is the default. |
WS_EX_LEFTSCROLLBAR | Specifies a window with the vertical scroll bar (if present) to the left of the client area. The shell language must support reading-order alignment for this to take effect. |
WS_EX_LTRREADING | Specifies a window that displays text using left-to-right reading-order properties. This is the default. |
WS_EX_MDICHILD | Specifies a multiple-document interface (MDI) child window. |
WS_EX_NOACTIVATE | Specifies a top-level window created with this style does not become the foreground window when the user clicks it. The system does not bring this window to the foreground when the user minimizes or closes the foreground window. The window does not appear on the taskbar by default. To force the window to appear on the taskbar, use the WS_EX_APPWINDOW style. To activate the window, use the SetActiveWindow or SetForegroundWindow function. |
WS_EX_NOINHERITLAYOUT | Specifies a window which does not pass its window layout to its child windows. |
WS_EX_NOPARENTNOTIFY | Specifies that a child window created with this style does not send the WM_PARENTNOTIFY message to its parent window when it is created or destroyed. |
WS_EX_OVERLAPPEDWINDOW | Specifies an overlapped window. |
WS_EX_PALETTEWINDOW | Specifies a palette window, which is a modeless dialog box that presents an array of commands. |
WS_EX_RIGHT | Specifies a window that has generic "right-aligned" properties. This depends on the window class. The shell language must support reading-order alignment for this to take effect. Using the WS_EX_RIGHT style has the same effect as using the SS_RIGHT (static), ES_RIGHT (edit), and BS_RIGHT/BS_RIGHTBUTTON (button) control styles. |
WS_EX_RIGHTSCROLLBAR | Specifies a window with the vertical scroll bar (if present) to the right of the client area. This is the default. |
WS_EX_RTLREADING | Specifies a window that displays text using right-to-left reading-order properties. The shell language must support reading-order alignment for this to take effect. |
WS_EX_STATICEDGE | Specifies a window with a three-dimensional border style intended to be used for items that do not accept user input. |
WS_EX_TOOLWINDOW | Specifies a window that is intended to be used as a floating toolbar. A tool window has a title bar that is shorter than a normal title bar, and the window title is drawn using a smaller font. A tool window does not appear in the taskbar or in the dialog that appears when the user presses ALT+TAB. If a tool window has a system menu, its icon is not displayed on the title bar. However, you can display the system menu by right-clicking or by typing ALT+SPACE. |
WS_EX_TOPMOST | Specifies a window that should be placed above all non-topmost windows and should stay above them, even when the window is deactivated. To add or remove this style, use the SetWindowPos function. |
WS_EX_TRANSPARENT | Specifies a window that should not be painted until siblings beneath the window (that were created by the same thread) have been painted. The window appears transparent because the bits of underlying sibling windows have already been painted. To achieve transparency without these restrictions, use the SetWindowRgn function. |
WS_EX_WINDOWEDGE | Specifies a window that has a border with a raised edge. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
Aveva.ApplicationFramework.Presentation.User32.WindowStylesEx
Requirements
Target Platforms: Windows Server 2019 (64 bit), Windows Server 2016 R2 (64 bit), Windows 10 (64 bit)
See Also