1 instantiation of DesignerActionUIService
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionUI.cs (1)
77designerActionUIService = new DesignerActionUIService(serviceProvider);
33 references to DesignerActionUIService
System.Design (1)
artifacts\obj\System.Design.Facade\Release\net9.0\System.Design.Forwards.cs (1)
23[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.DesignerActionUIService))]
System.Windows.Forms.Design (32)
System\ComponentModel\Design\DesignerActionService.cs (4)
251DesignerActionUIService? designerActionUIService = container.GetService<DesignerActionUIService>(); 374if (_serviceProvider.TryGetService(out DesignerActionUIService? designerActionUIService)) 381if (_serviceProvider.TryGetService(out DesignerActionUIService? designerActionUIService))
System\ComponentModel\Design\DesignerActionUI.cs (2)
28private DesignerActionUIService _designerActionUIService; // this is how all designeractions UI elements will be managed 75if (!serviceProvider.TryGetService(out DesignerActionUIService? designerActionUIService))
System\ComponentModel\Design\DesignerActionUIService.cs (1)
35host?.RemoveService<DesignerActionUIService>();
System\Windows\Forms\Design\Behavior\DesignerActionKeyboardBehavior.cs (2)
12private readonly DesignerActionUIService? _daUISvc; 23_daUISvc = serviceProvider.GetService<DesignerActionUIService>();
System\Windows\Forms\Design\ChangeToolStripParentVerb.cs (3)
49DesignerActionUIService designerActionUIService = _provider.GetService(typeof(DesignerActionUIService)) as DesignerActionUIService;
System\Windows\Forms\Design\CollectionEditVerbManager.cs (3)
187DesignerActionUIService actionUIService = (DesignerActionUIService)((IServiceProvider)this).GetService(typeof(DesignerActionUIService));
System\Windows\Forms\Design\SplitContainerDesigner.OrientationActionList.cs (2)
56DesignerActionUIService actionUIService = _owner.GetRequiredService<DesignerActionUIService>();
System\Windows\Forms\Design\StandardMenuStripVerb.cs (9)
42DesignerActionUIService actionUIService = (DesignerActionUIService)_host.GetService(typeof(DesignerActionUIService)); 249DesignerActionUIService actionUIService = (DesignerActionUIService)_provider.GetService(typeof(DesignerActionUIService)); 393DesignerActionUIService actionUIService = (DesignerActionUIService)_provider.GetService(typeof(DesignerActionUIService));
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (3)
262DesignerActionUIService actionUIService = (DesignerActionUIService)GetService(typeof(DesignerActionUIService));
System\Windows\Forms\Design\ToolStripActionList.cs (3)
121DesignerActionUIService? actionUIService = (DesignerActionUIService?)_toolStrip.Site?.GetService(typeof(DesignerActionUIService));