xtd 0.2.0
Loading...
Searching...
No Matches
process_window_style.h
Go to the documentation of this file.
1
4#pragma once
5#include "../enum.h"
6
8namespace xtd {
10 namespace diagnostics {
24 normal = 0,
26 hidden = 1,
28 minimized = 2,
30 maximized = 3,
31 };
32 }
33}
34
38};
process_window_style
Specified how a new window should appear when the system starts a process.
Definition process_window_style.h:22
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
@ normal
Specifies that the process has no special scheduling needs.
@ hidden
The hidden window style. A window can be either visible or hidden. The system displays a hidden windo...
@ minimized
The minimized window style. By default, the system reduces a minimized window to the size of its task...
@ maximized
The maximized window style. By default, the system enlarges a maximized window so that it fills the s...
@ normal
The normal, visible window style. The system displays a window with Normal style on the screen,...
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36