Implemented interface member:
property
Command
System.Windows.Input.ICommandSource.Command
12 writes to Command
PresentationFramework (9)
src\Framework\MS\Internal\Documents\DocumentGridContextMenu.cs (1)
238menuItem.Command = command;
src\Framework\System\Windows\Controls\MenuItem.cs (1)
1319menuItem.Command = command;
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (1)
907menuItem.Command = command;
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (6)
522menuItem.Command = EditingCommands.CorrectSpellingError; 542menuItem.Command = EditingCommands.IgnoreSpellingError; 624menuItem.Command = ApplicationCommands.CorrectionList; 649menuItem.Command = ApplicationCommands.Cut; 655menuItem.Command = ApplicationCommands.Copy; 667menuItem.Command = ApplicationCommands.Paste;
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (1)
227setAsStartNode.Command = FlowchartDesigner.SetAsStartNodeCommand;
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (2)
364menuItem.Command = null; 365menuItem.Command = cmd;
10 references to Command
PresentationFramework (3)
src\Framework\System\Windows\Controls\MenuItem.cs (3)
353uiCommand = menuItem.Command as RoutedUICommand; 448if (Command != null) 1125&& (routedCommand = menuItem.Command as RoutedCommand) != null )
System.Activities.Presentation (7)
System.Activities.Presentation\System\Activities\Presentation\View\ActivityTypeDesigner.xaml.cs (2)
40p.Command == DesignerView.GoToParentCommand || 41p.Command == DesignerView.ExpandCommand);
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (5)
360if (null != menuItem.Command) 363ICommand cmd = menuItem.Command; 589cmd => string.Equals(cmd, null != item.Command && item.Command is RoutedCommand ? ((RoutedCommand)item.Command).Name : item.Name)))