xtd 0.2.0
Loading...
Searching...
No Matches
process window style

Definition

process window style definitions.

Warning
Internal use only

Variables

constexpr int32_t PROCESS_WINDOW_STYLE_NORMAL
 The normal, visible window style. The system displays a window with Normal style on the screen, in a default location. If a window is visible, the user can supply input to the window and view the window's output. Frequently, an application may initialize a new window to the Hidden style while it customizes the window's appearance, and then make the window style Normal.
 
constexpr int32_t PROCESS_WINDOW_STYLE_HIDDEN
 The hidden window style. A window can be either visible or hidden. The system displays a hidden window by not drawing it. If a window is hidden, it is effectively disabled. A hidden window can process messages from the system or from other windows, but it cannot process input from the user or display output. Frequently, an application may keep a new window hidden while it customizes the window's appearance, and then make the window style Normal. To use process_window_style.Hidden, the ProcessStartInfo.UseShellExecute property must be false.
 
constexpr int32_t PROCESS_WINDOW_STYLE_MINIMIZED
 The minimized window style. By default, the system reduces a minimized window to the size of its taskbar button and moves the minimized window to the taskbar.
 
constexpr int32_t PROCESS_WINDOW_STYLE_MAXIMIZED
 The maximized window style. By default, the system enlarges a maximized window so that it fills the screen or, in the case of a child window, the parent window's client area. If the window has a title bar, the system automatically moves it to the top of the screen or to the top of the parent window's client area. Also, the system disables the window's sizing border and the window-positioning capability of the title bar so that the user cannot move the window by dragging the title bar.
 

Variable Documentation

◆ PROCESS_WINDOW_STYLE_NORMAL

constexpr int32_t PROCESS_WINDOW_STYLE_NORMAL
constexpr

#include <xtd.core.native/include/xtd/native/process_window_style.h>

The normal, visible window style. The system displays a window with Normal style on the screen, in a default location. If a window is visible, the user can supply input to the window and view the window's output. Frequently, an application may initialize a new window to the Hidden style while it customizes the window's appearance, and then make the window style Normal.

Library
xtd.core.native
Remarks
Added specifically for xtd.
Warning
Internal use only

◆ PROCESS_WINDOW_STYLE_HIDDEN

constexpr int32_t PROCESS_WINDOW_STYLE_HIDDEN
constexpr

#include <xtd.core.native/include/xtd/native/process_window_style.h>

The hidden window style. A window can be either visible or hidden. The system displays a hidden window by not drawing it. If a window is hidden, it is effectively disabled. A hidden window can process messages from the system or from other windows, but it cannot process input from the user or display output. Frequently, an application may keep a new window hidden while it customizes the window's appearance, and then make the window style Normal. To use process_window_style.Hidden, the ProcessStartInfo.UseShellExecute property must be false.

Library
xtd.core.native
Remarks
Added specifically for xtd.
Warning
Internal use only

◆ PROCESS_WINDOW_STYLE_MINIMIZED

constexpr int32_t PROCESS_WINDOW_STYLE_MINIMIZED
constexpr

#include <xtd.core.native/include/xtd/native/process_window_style.h>

The minimized window style. By default, the system reduces a minimized window to the size of its taskbar button and moves the minimized window to the taskbar.

Library
xtd.core.native
Remarks
Added specifically for xtd.
Warning
Internal use only

◆ PROCESS_WINDOW_STYLE_MAXIMIZED

constexpr int32_t PROCESS_WINDOW_STYLE_MAXIMIZED
constexpr

#include <xtd.core.native/include/xtd/native/process_window_style.h>

The maximized window style. By default, the system enlarges a maximized window so that it fills the screen or, in the case of a child window, the parent window's client area. If the window has a title bar, the system automatically moves it to the top of the screen or to the top of the parent window's client area. Also, the system disables the window's sizing border and the window-positioning capability of the title bar so that the user cannot move the window by dragging the title bar.

Library
xtd.core.native
Remarks
Added specifically for xtd.
Warning
Internal use only