-
Notifications
You must be signed in to change notification settings - Fork 3
FlatWindowCommands
Back to home | Back to Reference | View raw text
Contains a collection of commands that can be used with the FlatWindow class (and any classes that inherit from it).
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi
SolidShineUi.FlatWindowCommands[[FlatWindowCommands]]
end
Type | Name | Methods |
---|---|---|
RoutedCommand |
CloseWindow A WPF command that when executed, will close the specified window. |
get |
RoutedCommand |
DisplaySystemMenu A WPF command that when executed, will display the window's system menu in the top-left corner of the window. |
get |
RoutedCommand |
Maximize A WPF command that when executed, will maximize the window (take up all space on the screen). |
get |
RoutedCommand |
Minimize A WPF command that when executed, will minimize the window (hide in the taskbar). |
get |
RoutedCommand |
Restore A WPF command that when executed, will restore the window to its state prior to being minimized or maximized. |
get |
Contains a collection of commands that can be used with the FlatWindow class (and any classes that inherit from it).
public static RoutedCommand CloseWindow { get; }
A WPF command that when executed, will close the specified window.
public static RoutedCommand Minimize { get; }
A WPF command that when executed, will minimize the window (hide in the taskbar).
public static RoutedCommand Maximize { get; }
A WPF command that when executed, will maximize the window (take up all space on the screen).
public static RoutedCommand Restore { get; }
A WPF command that when executed, will restore the window to its state prior to being minimized or maximized.
public static RoutedCommand DisplaySystemMenu { get; }
A WPF command that when executed, will display the window's system menu in the top-left corner of the window.
Generated with ModularDoc