1 write to ShowSystemMenuCommand
PresentationFramework (1)
System\Windows\SystemCommands.cs (1)
26
ShowSystemMenuCommand
= new RoutedCommand("ShowSystemMenu", typeof(SystemCommands));
7 references to ShowSystemMenuCommand
System.Windows.Controls.Ribbon (7)
Microsoft\Windows\Controls\Ribbon\RibbonContextualTabGroup.cs (2)
384
if (SystemCommands.
ShowSystemMenuCommand
.CanExecute(null, ribbonWindow))
386
SystemCommands.
ShowSystemMenuCommand
.Execute( /*parameter*/ null, /* target*/ ribbonWindow);
Microsoft\Windows\Controls\Ribbon\RibbonWindow.cs (5)
33
private static ICommand _showSystemMenuCommand = System.Windows.SystemCommands.
ShowSystemMenuCommand
;
327
if (SystemCommands.
ShowSystemMenuCommand
.CanExecute(null, this))
329
SystemCommands.
ShowSystemMenuCommand
.Execute(null, this);
380
if (SystemCommands.
ShowSystemMenuCommand
.CanExecute(e, this))
382
SystemCommands.
ShowSystemMenuCommand
.Execute(e, this);