1 write to ShowSystemMenuCommand
PresentationFramework (1)
System\Windows\SystemCommands.cs (1)
25ShowSystemMenuCommand = new RoutedCommand("ShowSystemMenu", typeof(SystemCommands));
7 references to ShowSystemMenuCommand
System.Windows.Controls.Ribbon (7)
Microsoft\Windows\Controls\Ribbon\RibbonContextualTabGroup.cs (2)
383if (SystemCommands.ShowSystemMenuCommand.CanExecute(null, ribbonWindow)) 385SystemCommands.ShowSystemMenuCommand.Execute( /*parameter*/ null, /* target*/ ribbonWindow);
Microsoft\Windows\Controls\Ribbon\RibbonWindow.cs (5)
32private static ICommand _showSystemMenuCommand = System.Windows.SystemCommands.ShowSystemMenuCommand; 326if (SystemCommands.ShowSystemMenuCommand.CanExecute(null, this)) 328SystemCommands.ShowSystemMenuCommand.Execute(null, this); 379if (SystemCommands.ShowSystemMenuCommand.CanExecute(e, this)) 381SystemCommands.ShowSystemMenuCommand.Execute(e, this);