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