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