2 overrides of FindCommand
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\Behavior\DesignerActionKeyboardBehavior.cs (1)
29public override MenuCommand? FindCommand(CommandID commandId)
System\Windows\Forms\Design\DataGridViewColumnDesigner.cs (1)
296public override MenuCommand? FindCommand(CommandID commandId)
4 references to FindCommand
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\Behavior\Behavior.cs (1)
74return GetNextBehavior.FindCommand(commandId);
System\Windows\Forms\Design\Behavior\BehaviorService.cs (1)
559MenuCommand? menuCommand = behavior.FindCommand(commandID);
System\Windows\Forms\Design\Behavior\DesignerActionKeyboardBehavior.cs (1)
59return base.FindCommand(commandId); // this will route the request to the parent behavior
System\Windows\Forms\Design\DataGridViewColumnDesigner.cs (1)
339return base.FindCommand(commandId);