1 instantiation of DesignerActionPanel
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\Behavior\DesignerActionBehavior.cs (1)
63DesignerActionPanel dap = new(_serviceProvider);
34 references to DesignerActionPanel
System.Windows.Forms.Design (34)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (2)
15private CheckBoxPropertyLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) 69public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (2)
25private EditorPropertyLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) 478public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.EditorButton.cs (1)
125using Icon icon = new(typeof(DesignerActionPanel), "Arrow.ico");
System\ComponentModel\Design\DesignerActionPanel.HeaderLine.cs (2)
12private HeaderLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) : base(serviceProvider, actionPanel) 22public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.Line.cs (2)
15protected Line(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) 21protected DesignerActionPanel ActionPanel { get; }
System\ComponentModel\Design\DesignerActionPanel.LineInfo.cs (1)
12public abstract Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel);
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (2)
17private MethodLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) : base(serviceProvider, actionPanel) 122public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.PanelHeaderLine.cs (2)
18private PanelHeaderLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) 127public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.PropertyLine.cs (1)
19protected PropertyLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) : base(serviceProvider, actionPanel)
System\ComponentModel\Design\DesignerActionPanel.SeparatorLine.cs (2)
13private SeparatorLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel, bool isSubSeparator) : base(serviceProvider, actionPanel) 40public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (2)
21protected TextBoxPropertyLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) 364public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (2)
16protected TextLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel) 78public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionUI.cs (3)
337DesignerActionPanel? dap = _designerActionHost.CurrentPanel; // WE DO NOT RECREATE THE WHOLE THING / WE UPDATE THE TASKS - should flicker less 657Point pt = DesignerActionPanel.ComputePreferredDesktopLocation(rectGlyph, _designerActionHost.Size, out DockStyle edgeToDock); 693internal void ShowDesignerActionPanel(IComponent relatedComponent, DesignerActionPanel panel, DesignerActionGlyph glyph)
System\ComponentModel\Design\DesignerActionUI.DesignerActionToolStripDropDown.cs (4)
26public DesignerActionPanel? CurrentPanel => _panel?.Control as DesignerActionPanel; 131public void SetDesignerActionPanel(DesignerActionPanel panel, Glyph relatedGlyph) 133if (_panel is not null && panel == (DesignerActionPanel)_panel.Control)
System\ComponentModel\Design\DesignerActionUIService.cs (1)
58/// <see cref="DesignerActionPanel"> designer action panels.</see>
System\Windows\Forms\Design\Behavior\DesignerActionBehavior.cs (3)
58internal DesignerActionPanel CreateDesignerActionPanel(IComponent relatedComponent) 63DesignerActionPanel dap = new(_serviceProvider); 79DesignerActionPanel dap = CreateDesignerActionPanel(RelatedComponent);
System\Windows\Forms\Design\Behavior\DesignerActionKeyboardBehavior.cs (2)
10private readonly DesignerActionPanel? _panel; 15public DesignerActionKeyboardBehavior(DesignerActionPanel? panel, IServiceProvider? serviceProvider, BehaviorService behaviorService)