Skip to content

FlatWindowCommands

JaykeBird edited this page Feb 21, 2023 · 2 revisions

Back to home | Back to Reference | View raw text

FlatWindowCommands class

Description

Contains a collection of commands that can be used with the FlatWindow class (and any classes that inherit from it).

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SolidShineUi
  SolidShineUi.FlatWindowCommands[[FlatWindowCommands]]
  end
Loading

Members

Properties

Public Static properties

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

Details

Summary

Contains a collection of commands that can be used with the FlatWindow class (and any classes that inherit from it).

Properties

CloseWindow

public static RoutedCommand CloseWindow { get; }
Summary

A WPF command that when executed, will close the specified window.

Minimize

public static RoutedCommand Minimize { get; }
Summary

A WPF command that when executed, will minimize the window (hide in the taskbar).

Maximize

public static RoutedCommand Maximize { get; }
Summary

A WPF command that when executed, will maximize the window (take up all space on the screen).

Restore

public static RoutedCommand Restore { get; }
Summary

A WPF command that when executed, will restore the window to its state prior to being minimized or maximized.

DisplaySystemMenu

public static RoutedCommand DisplaySystemMenu { get; }
Summary

A WPF command that when executed, will display the window's system menu in the top-left corner of the window.

Generated with ModularDoc

Clone this wiki locally