1 write to ShowSystemMenuCommand
PresentationFramework (1)
System\Windows\SystemCommands.cs (1)
28
ShowSystemMenuCommand
= new RoutedCommand("ShowSystemMenu", typeof(SystemCommands));
7 references to ShowSystemMenuCommand
System.Windows.Controls.Ribbon (7)
Microsoft\Windows\Controls\Ribbon\RibbonContextualTabGroup.cs (2)
386
if (SystemCommands.
ShowSystemMenuCommand
.CanExecute(null, ribbonWindow))
388
SystemCommands.
ShowSystemMenuCommand
.Execute( /*parameter*/ null, /* target*/ ribbonWindow);
Microsoft\Windows\Controls\Ribbon\RibbonWindow.cs (5)
38
private static ICommand _showSystemMenuCommand = System.Windows.SystemCommands.
ShowSystemMenuCommand
;
332
if (SystemCommands.
ShowSystemMenuCommand
.CanExecute(null, this))
334
SystemCommands.
ShowSystemMenuCommand
.Execute(null, this);
385
if (SystemCommands.
ShowSystemMenuCommand
.CanExecute(e, this))
387
SystemCommands.
ShowSystemMenuCommand
.Execute(e, this);