Ghost1372

everything can be handy

Commands

you can bind this pre-definded commands in your xaml

Commands

Command Description
OpenLink Open Link
ShutdownApp Close Application
PushMainWindow2Top Open MainWindow in front
CloseWindow Close Current Window
StartScreenshot Take Screenshot
1
<Button Command="hc:ControlCommands.OpenLink" CommandParameter="https://google.com" Content="Open Link" />

ShutdownApp

1
<Button Command="hc:ControlCommands.ShutdownApp" Content="ShutDown App"/>

PushMainWindow2Top

1
<Button Command="hc:ControlCommands.PushMainWindow2Top" Content="Push Main Window"/>

CloseWindow

1
<Button Command="hc:ControlCommands.CloseWindow" CommandParameter="{Binding RelativeSource={RelativeSource Self}}" Content="Close Window"/>

StartScreenshot

1
<Button Command="hc:ControlCommands.StartScreenshot" Content="Start Screen Shot"/>
0%