xtd 0.2.0
process_window_style.h
Go to the documentation of this file.
1 #pragma once
5 #include "../enum.h"
6 
8 namespace xtd {
10  namespace diagnostics {
22  enum class process_window_style {
24  normal = 0,
26  hidden = 1,
28  minimized = 2,
30  maximized = 3,
31  };
32  }
33 }
34 
38 };
The hidden window style. A window can be either visible or hidden. The system displays a hidden windo...
The minimized window style. By default, the system reduces a minimized window to the size of its task...
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
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
Specifies that the process has no special scheduling needs.
The maximized window style. By default, the system enlarges a maximized window so that it fills the s...
process_window_style
Specified how a new window should appear when the system starts a process.
Definition: process_window_style.h:22
Provides the registration struct for enumerations.
Definition: enum_register.h:36