4 implementations of Execute
Microsoft.Maui.Controls (1)
Command.cs (1)
120 public void Execute(object parameter)
Microsoft.VisualStudio.LanguageServices (1)
Utilities\DelegateCommand.cs (1)
42public void Execute(object parameter) => _action(parameter);
PresentationCore (1)
System\Windows\Input\Command\RoutedCommand.cs (1)
80void ICommand.Execute(object parameter)
System.Windows.Forms.Tests (1)
System\Windows\Forms\Mocks\DataBinding\RelayCommand.cs (1)
56public void Execute(object? parameter)
42 references to Execute
Microsoft.Maui.Controls (31)
Button\ButtonElement.cs (1)
39 ButtonElementManager.Command?.Execute(ButtonElementManager.CommandParameter);
Cells\TextCell.cs (1)
104 Command?.Execute(CommandParameter);
ClickGestureRecognizer.cs (1)
66 cmd.Execute(parameter);
DragAndDrop\DragGestureRecognizer.cs (2)
107 DropCompletedCommand?.Execute(DropCompletedCommandParameter); 115 DragStartingCommand?.Execute(DragStartingCommandParameter);
DragAndDrop\DropGestureRecognizer.cs (3)
96 DragOverCommand?.Execute(DragOverCommandParameter); 102 DragLeaveCommand?.Execute(DragLeaveCommandParameter); 111 DropCommand?.Execute(DropCommandParameter);
Entry\Entry.cs (1)
184 ReturnCommand.Execute(ReturnCommandParameter);
Items\CarouselView.cs (2)
143 command.Execute(commandParameter); 255 command.Execute(commandParameter);
Items\ItemsView.cs (1)
173 RemainingItemsThresholdReachedCommand?.Execute(RemainingItemsThresholdReachedCommandParameter);
Items\SelectableItemsView.cs (1)
162 command.Execute(commandParameter);
ListView\ListView.cs (1)
365 command?.Execute(null);
Menu\MenuItem.cs (1)
111 Command?.Execute(CommandParameter);
PointerGestureRecognizer.cs (5)
193 cmd.Execute(PointerEnteredCommandParameter); 206 cmd.Execute(PointerExitedCommandParameter); 219 cmd.Execute(PointerMovedCommandParameter); 232 cmd.Execute(PointerPressedCommandParameter); 245 cmd.Execute(PointerReleasedCommandParameter);
RefreshView\RefreshView.cs (1)
41 refreshView.Command?.Execute(refreshView.CommandParameter);
SearchBar\SearchBar.cs (1)
134 cmd?.Execute(SearchCommandParameter);
Shell\SearchHandler.cs (2)
586 command.Execute(commandParameter); 604 command.Execute(commandParameter);
Shell\Shell.cs (1)
1526 command.Execute(commandParameter);
Slider\Slider.cs (2)
154 DragStartedCommand?.Execute(null); 163 DragCompletedCommand?.Execute(null);
SwipeGestureRecognizer.cs (1)
119 cmd.Execute(CommandParameter);
SwipeView\SwipeItem.cs (1)
40 Command.Execute(CommandParameter);
SwipeView\SwipeItemView.cs (1)
42 Command.Execute(CommandParameter);
TapGestureRecognizer.cs (1)
60 cmd.Execute(CommandParameter);
Microsoft.VisualStudio.LanguageServices (1)
StackTraceExplorer\StackTraceExplorerRoot.xaml.cs (1)
45tab.CloseClick.Execute(null);
PresentationCore (1)
System\Windows\Input\Command\CommandManager.cs (1)
418command.Execute(parameter);
PresentationFramework (3)
MS\Internal\Commands\CommandHelpers.cs (2)
173command.Execute(parameter); 190command.Execute(parameter);
System\Windows\Shell\ThumbButtonInfo.cs (1)
271command.Execute(parameter);
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Input\CommandHelpers.cs (1)
69command.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?)"/> 2707/// <see cref="Input.ICommand.Execute(object?)"/> if the context allows.
System\Windows\Forms\DataBinding\ICommandBindingTargetProvider.cs (1)
86commandComponent.Command?.Execute(commandComponent.CommandParameter);