1 instantiation of DesignerActionService
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionUI.cs (1)
71
designerActionService = 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)
607
DesignerActionService
? actionService = _serviceProvider.GetService<
DesignerActionService
>();
System\ComponentModel\Design\DesignerActionService.cs (2)
37
host?.AddService(typeof(
DesignerActionService
), this);
134
host?.RemoveService<
DesignerActionService
>();
System\ComponentModel\Design\DesignerActionUI.cs (2)
27
private
DesignerActionService
_designerActionService; // this is how all designeractions will be managed
68
if (!serviceProvider.TryGetService(out
DesignerActionService
? designerActionService))
System\ComponentModel\Design\DesignerActionUIService.cs (3)
12
private readonly
DesignerActionService
? _designerActionService;
22
_designerActionService = serviceProvider.GetService(typeof(
DesignerActionService
)) as
DesignerActionService
;
System\ComponentModel\Design\MenuCommandService.cs (1)
218
if (TryGetService(out
DesignerActionService
? daSvc))
System\Windows\Forms\Design\ControlDesigner.cs (1)
957
if (TryGetService(out
DesignerActionService
? designerActionService))