xtd 0.2.0
Loading...
Searching...
No Matches
window styles

Definition

window styles definitions.

Warning
Internal use only

Variables

constexpr size_t WS_OVERLAPPED
 Creates an overlapped window. An overlapped window usually has a caption and a border.
 
constexpr size_t WS_MAXIMIZEBOX
 Creates a window that has a Maximize button.
 
constexpr size_t WS_MINIMIZEBOX
 Creates a window that has a Minimize button.
 
constexpr size_t WS_THICKFRAME
 Creates a window with a thick frame that can be used to size the window.
 
constexpr size_t WS_SYSMENU
 Creates a window that has a Control-menu box in its title bar. Used only for windows with title bars.
 
constexpr size_t WS_HSCROLL
 Creates a window that has a horizontal scroll bar.
 
constexpr size_t WS_VSCROLL
 Creates a window that has a vertical scroll bar.
 
constexpr size_t WS_DLGFRAME
 Creates a window with a double border but no title.
 
constexpr size_t WS_BORDER
 Creates a window that has a border.
 
constexpr size_t WS_CAPTION
 Creates a window that has a title bar (implies the WS_BORDER style). Cannot be used with the WS_DLGFRAME style.
 
constexpr size_t WS_MAXIMIZE
 Creates a window of maximum size.
 
constexpr size_t WS_CLIPCHILDREN
 Excludes the area occupied by child windows when you draw within the parent window. Used when you create the parent window.
 
constexpr size_t WS_CLIPSIBLINGS
 Clips child windows relative to each other; that is, when a particular child window receives a paint message, the WS_CLIPSIBLINGS style clips all other overlapped child windows out of the region of the child window to be updated. (If WS_CLIPSIBLINGS is not given and child windows overlap, when you draw within the client area of a child window, it is possible to draw within the client area of a neighboring child window.) For use with the WS_CHILD style only.
 
constexpr size_t WS_DISABLED
 Creates a window that is initially disabled.
 
constexpr size_t WS_VISIBLE
 Creates a window that is initially visible.
 
constexpr size_t WS_MINIMIZE
 Creates a window that is initially minimized. For use with the WS_OVERLAPPED style only.
 
constexpr size_t WS_CHILD
 Creates a child window. Cannot be used with the WS_POPUP style.
 
constexpr size_t WS_POPUP
 Creates a pop-up window. Cannot be used with the WS_CHILD style.
 
constexpr size_t WS_GROUP
 Specifies the first control of a group of controls in which the user can move from one control to the next with the arrow keys. All controls defined with the WS_GROUP style FALSE after the first control belong to the same group. The next control with the WS_GROUP style starts the next group (that is, one group ends where the next begins).
 
constexpr size_t WS_TABSTOP
 Specifies one of any number of controls through which the user can move by using the TAB key. The TAB key moves the user to the next control specified by the WS_TABSTOP style.
 
constexpr size_t WS_OVERLAPPEDWINDOW
 Creates an overlapped window with the WS_OVERLAPPED, WS_CAPTION, WS_SYSMENU, WS_THICKFRAME, WS_MINIMIZEBOX, and WS_MAXIMIZEBOX styles.
 
constexpr size_t WS_POPUPWINDOW
 Creates a pop-up window with the WS_BORDER, WS_POPUP, and WS_SYSMENU styles. The WS_CAPTION style must be combined with the WS_POPUPWINDOW style to make the Control menu visible.
 
constexpr size_t WS_CHILDWINDOW
 Same as the WS_CHILD style.
 
constexpr size_t WS_TILED
 Creates an overlapped window. An overlapped window has a title bar and a border. Same as the WS_OVERLAPPED style.
 
constexpr size_t WS_ICONIC
 Creates a window that is initially minimized. Same as the WS_MINIMIZE style.
 
constexpr size_t WS_SIZEBOX
 Creates a window that has a sizing border. Same as the WS_THICKFRAME style.
 
constexpr size_t WS_TILEDWINDOW
 Creates an overlapped window with the WS_OVERLAPPED, WS_CAPTION, WS_SYSMENU, WS_THICKFRAME, WS_MINIMIZEBOX, and WS_MAXIMIZEBOX styles. Same as the WS_OVERLAPPEDWINDOW style.
 

Variable Documentation

◆ WS_OVERLAPPED

constexpr size_t WS_OVERLAPPED
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates an overlapped window. An overlapped window usually has a caption and a border.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_MAXIMIZEBOX

constexpr size_t WS_MAXIMIZEBOX
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that has a Maximize button.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_MINIMIZEBOX

constexpr size_t WS_MINIMIZEBOX
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that has a Minimize button.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_THICKFRAME

constexpr size_t WS_THICKFRAME
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window with a thick frame that can be used to size the window.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_SYSMENU

constexpr size_t WS_SYSMENU
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that has a Control-menu box in its title bar. Used only for windows with title bars.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_HSCROLL

constexpr size_t WS_HSCROLL
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that has a horizontal scroll bar.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_VSCROLL

constexpr size_t WS_VSCROLL
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that has a vertical scroll bar.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_DLGFRAME

constexpr size_t WS_DLGFRAME
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window with a double border but no title.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_BORDER

constexpr size_t WS_BORDER
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that has a border.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_CAPTION

constexpr size_t WS_CAPTION
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that has a title bar (implies the WS_BORDER style). Cannot be used with the WS_DLGFRAME style.

Library
xtd.forms.native
Warning
Internal use only
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_MAXIMIZE

constexpr size_t WS_MAXIMIZE
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window of maximum size.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_CLIPCHILDREN

constexpr size_t WS_CLIPCHILDREN
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Excludes the area occupied by child windows when you draw within the parent window. Used when you create the parent window.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_CLIPSIBLINGS

constexpr size_t WS_CLIPSIBLINGS
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Clips child windows relative to each other; that is, when a particular child window receives a paint message, the WS_CLIPSIBLINGS style clips all other overlapped child windows out of the region of the child window to be updated. (If WS_CLIPSIBLINGS is not given and child windows overlap, when you draw within the client area of a child window, it is possible to draw within the client area of a neighboring child window.) For use with the WS_CHILD style only.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_DISABLED

constexpr size_t WS_DISABLED
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that is initially disabled.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_VISIBLE

constexpr size_t WS_VISIBLE
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that is initially visible.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_MINIMIZE

constexpr size_t WS_MINIMIZE
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that is initially minimized. For use with the WS_OVERLAPPED style only.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_CHILD

constexpr size_t WS_CHILD
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a child window. Cannot be used with the WS_POPUP style.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_POPUP

constexpr size_t WS_POPUP
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a pop-up window. Cannot be used with the WS_CHILD style.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_GROUP

constexpr size_t WS_GROUP
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Specifies the first control of a group of controls in which the user can move from one control to the next with the arrow keys. All controls defined with the WS_GROUP style FALSE after the first control belong to the same group. The next control with the WS_GROUP style starts the next group (that is, one group ends where the next begins).

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_TABSTOP

constexpr size_t WS_TABSTOP
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Specifies one of any number of controls through which the user can move by using the TAB key. The TAB key moves the user to the next control specified by the WS_TABSTOP style.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_OVERLAPPEDWINDOW

constexpr size_t WS_OVERLAPPEDWINDOW
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates an overlapped window with the WS_OVERLAPPED, WS_CAPTION, WS_SYSMENU, WS_THICKFRAME, WS_MINIMIZEBOX, and WS_MAXIMIZEBOX styles.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_POPUPWINDOW

constexpr size_t WS_POPUPWINDOW
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a pop-up window with the WS_BORDER, WS_POPUP, and WS_SYSMENU styles. The WS_CAPTION style must be combined with the WS_POPUPWINDOW style to make the Control menu visible.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_CHILDWINDOW

constexpr size_t WS_CHILDWINDOW
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Same as the WS_CHILD style.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_TILED

constexpr size_t WS_TILED
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates an overlapped window. An overlapped window has a title bar and a border. Same as the WS_OVERLAPPED style.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_ICONIC

constexpr size_t WS_ICONIC
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that is initially minimized. Same as the WS_MINIMIZE style.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_SIZEBOX

constexpr size_t WS_SIZEBOX
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates a window that has a sizing border. Same as the WS_THICKFRAME style.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ WS_TILEDWINDOW

constexpr size_t WS_TILEDWINDOW
constexpr

#include <xtd.forms.native/include/xtd/forms/native/window_styles.h>

Creates an overlapped window with the WS_OVERLAPPED, WS_CAPTION, WS_SYSMENU, WS_THICKFRAME, WS_MINIMIZEBOX, and WS_MAXIMIZEBOX styles. Same as the WS_OVERLAPPEDWINDOW style.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only