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