3 implementations of Execute
Microsoft.VisualStudio.LanguageServices (1)
Utilities\DelegateCommand.cs (1)
42public void Execute(object parameter) => _action(parameter);
PresentationCore (1)
System\Windows\Input\Command\RoutedCommand.cs (1)
91void ICommand.Execute(object parameter)
System.Windows.Forms.Tests (1)
System\Windows\Forms\Mocks\DataBinding\RelayCommand.cs (1)
53public void Execute(object? parameter)
11 references to Execute
Microsoft.VisualStudio.LanguageServices (1)
StackTraceExplorer\StackTraceExplorerRoot.xaml.cs (1)
45tab.CloseClick.Execute(null);
PresentationCore (1)
System\Windows\Input\Command\CommandManager.cs (1)
429command.Execute(parameter);
PresentationFramework (3)
MS\Internal\Commands\CommandHelpers.cs (2)
178command.Execute(parameter); 195command.Execute(parameter);
System\Windows\Shell\ThumbButtonInfo.cs (1)
274command.Execute(parameter);
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Input\CommandHelpers.cs (1)
78command.Execute(parameter);
System.Windows.Forms (5)
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (2)
182/// Gets or sets the <see cref="Input.ICommand"/> whose <see cref="Input.ICommand.Execute(object?)"/> 1058/// <see cref="Input.ICommand.Execute(object?)"/> if the context allows.
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (2)
401/// Gets or sets the <see cref="Input.ICommand"/> whose <see cref="Input.ICommand.Execute(object?)"/> 2715/// <see cref="Input.ICommand.Execute(object?)"/> if the context allows.
System\Windows\Forms\DataBinding\ICommandBindingTargetProvider.cs (1)
86commandComponent.Command?.Execute(commandComponent.CommandParameter);