Class SystemCommands
Inheritance
System.Object
SystemCommands
Assembly: Syncfusion.Shared.WPF.dll
Syntax
public static class SystemCommands : Object
Properties
CloseWindowCommand
Declaration
public static RoutedCommand CloseWindowCommand { get; }
Property Value
| Type |
| System.Windows.Input.RoutedCommand |
MaximizeWindowCommand
Declaration
public static RoutedCommand MaximizeWindowCommand { get; }
Property Value
| Type |
| System.Windows.Input.RoutedCommand |
MinimizeWindowCommand
Declaration
public static RoutedCommand MinimizeWindowCommand { get; }
Property Value
| Type |
| System.Windows.Input.RoutedCommand |
RestoreWindowCommand
Declaration
public static RoutedCommand RestoreWindowCommand { get; }
Property Value
| Type |
| System.Windows.Input.RoutedCommand |
ShowSystemMenuCommand
Declaration
public static RoutedCommand ShowSystemMenuCommand { get; }
Property Value
| Type |
| System.Windows.Input.RoutedCommand |
Methods
CloseWindow(Window)
Declaration
public static void CloseWindow(Window window)
Parameters
| Type |
Name |
Description |
| System.Windows.Window |
window |
|
MaximizeWindow(Window)
Declaration
public static void MaximizeWindow(Window window)
Parameters
| Type |
Name |
Description |
| System.Windows.Window |
window |
|
MinimizeWindow(Window)
Declaration
public static void MinimizeWindow(Window window)
Parameters
| Type |
Name |
Description |
| System.Windows.Window |
window |
|
RestoreWindow(Window)
Declaration
public static void RestoreWindow(Window window)
Parameters
| Type |
Name |
Description |
| System.Windows.Window |
window |
|
ShowSystemMenu(Window, Point)
Display the system menu at a specified location.
Declaration
public static void ShowSystemMenu(Window window, Point screenLocation)
Parameters
| Type |
Name |
Description |
| System.Windows.Window |
window |
|
| System.Windows.Point |
screenLocation |
The location to display the system menu, in logical screen coordinates.
|