1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int SW_HIDE = 0;
-
-
-
- public const int SW_SHOWNORMAL = 1;
-
-
-
- public const int SW_SHOWMINIMIZED = 2;
-
-
-
- public const int SW_MAXIMIZE = 3;
-
-
-
- public const int SW_SHOWMAXIMIZED = 3;
-
-
-
- public const int SW_SHOWNOACTIVATE = 4;
-
-
-
- public const int SW_SHOW = 5;
-
-
-
- public const int SW_MINIMIZE = 6;
-
-
-
- public const int SW_SHOWMINNOACTIVE = 7;
-
-
-
- public const int SW_SHOWNA = 8;
-
-
-
- public const int SW_RESTORE = 9;
-
-
-
- public const int SW_SHOWDEFAULT = 10;
-
-
-
- public const int SW_FORCEMINIMIZE = 11;
- }
- }
|