1 write to _commandsPane
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
219
_commandsPane
= new CommandsPane(this);
29 references to _commandsPane
System.Windows.Forms (29)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (29)
220
using SuspendLayoutScope suspendCommandsPaneLayout = new(
_commandsPane
, performLayout: false);
221
_commandsPane
.TabIndex = 3;
222
_commandsPane
.Dock = DockStyle.None;
224
_commandsPane
.Visible = false;
225
_commandsPane
.MouseMove += OnChildMouseMove;
226
_commandsPane
.MouseDown += OnChildMouseDown;
228
Controls.AddRange([_helpPane,
_commandsPane
, _gridView, _toolStrip]);
396
public virtual bool CanShowCommands =>
_commandsPane
.WouldBeVisible;
424
get =>
_commandsPane
.BackColor;
427
_commandsPane
.BackColor = value;
428
_commandsPane
.Label.BackColor = value;
439
get =>
_commandsPane
.ForeColor;
442
_commandsPane
.ForeColor = value;
443
_commandsPane
.Label.ForeColor = value;
454
get =>
_commandsPane
.Label.LinkColor;
455
set =>
_commandsPane
.Label.LinkColor = value;
465
get =>
_commandsPane
.Label.ActiveLinkColor;
466
set =>
_commandsPane
.Label.ActiveLinkColor = value;
476
get =>
_commandsPane
.Label.DisabledLinkColor;
477
set =>
_commandsPane
.Label.DisabledLinkColor = value;
488
get =>
_commandsPane
.BorderColor;
489
set =>
_commandsPane
.BorderColor = value;
497
public virtual bool CommandsVisible =>
_commandsPane
.Visible;
508
get =>
_commandsPane
.AllowVisible;
511
bool hotcommandsVisible =
_commandsPane
.Visible;
512
_commandsPane
.AllowVisible = value;
514
if (hotcommandsVisible !=
_commandsPane
.Visible)
517
_commandsPane
.Invalidate();
679
internal AccessibleObject CommandsPaneAccessibleObject =>
_commandsPane
.AccessibilityObject;