|
Extended window styles help
Styles:
WS_EX_ACCEPTFILES - The window accepts drag-drop files.
WS_EX_APPWINDOW- Forces a top-level window onto the taskbar when the window is visible.
WS_EX_CLIENTEDGE - The window has a border with a sunken edge.
This creates the typical blue border always used on edit controls.
WS_EX_CONTEXTHELP - The window shows a question mark (?) in the title bar.
WS_EX_LAYOUTRTL - For Arabic and Hebrew versions of Windows.
The horizontal orgin of the control is on the right.
WS_EX_LEFT - Default - The window has left-aligned properties
WS_EX_RIGHT - The window has right-aligned properties
This style has an effect only if the shell language is Hebrew, Arabic, or another language that supports reading-order alignment; otherwise, the style is ignored.
WS_EX_STATICEDGE - The window has a three-dimensional border style intended to be used for items that do not accept user input.
WS_EX_WINDOWEDGE - The window has a border with a raised edge.
WS_EX_TOOLWINDOW - The window has a shorter-than-normal title bar and the window title is drawn using a smaller font.
WS_EX_TOPMOST - The window is placed above all non-topmost windows.
WS_EX_LAYERED - Adds support for alpha fades to a window.
You can change the alpha value using the API_Window_SetAlpha function.
WS_EX_TRANSPARENT - Specifies that a window created with this style 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.
WS_EX_HIDDEN - The window is created hidden.
WS_EX_SHADOW - The window has a shadow. Only for windows. Works from Windows XP or higher.
|
|
|
|