1 instantiation of DesignerActionService
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionUI.cs (1)
71designerActionService = new DesignerActionService(serviceProvider);
15 references to DesignerActionService
System.Design (1)
src\winforms\artifacts\obj\System.Design.Facade\Release\net11.0\System.Design.Forwards.cs (1)
21[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.DesignerActionService))]
System.Windows.Forms.Design (14)
System\ComponentModel\Design\DesignerActionListsChangedEventArgs.cs (2)
7/// Provides data for the <see cref="DesignerActionService.DesignerActionListsChanged" /> event. 11/// The <c>DesignerActionListsChangedEventArgs</c> class is used by the <see cref="DesignerActionService"/> class
System\ComponentModel\Design\DesignerActionListsChangedEventHandler.cs (1)
7/// This event is raised by the <see cref="DesignerActionService"/> when a shortcut is either added or removed
System\ComponentModel\Design\DesignerActionPanel.cs (2)
607DesignerActionService? actionService = _serviceProvider.GetService<DesignerActionService>();
System\ComponentModel\Design\DesignerActionService.cs (2)
37host?.AddService(typeof(DesignerActionService), this); 134host?.RemoveService<DesignerActionService>();
System\ComponentModel\Design\DesignerActionUI.cs (2)
27private DesignerActionService _designerActionService; // this is how all designeractions will be managed 68if (!serviceProvider.TryGetService(out DesignerActionService? designerActionService))
System\ComponentModel\Design\DesignerActionUIService.cs (3)
12private readonly DesignerActionService? _designerActionService; 22_designerActionService = serviceProvider.GetService(typeof(DesignerActionService)) as DesignerActionService;
System\ComponentModel\Design\MenuCommandService.cs (1)
218if (TryGetService(out DesignerActionService? daSvc))
System\Windows\Forms\Design\ControlDesigner.cs (1)
957if (TryGetService(out DesignerActionService? designerActionService))