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]);
399
public virtual bool CanShowCommands =>
_commandsPane
.WouldBeVisible;
427
get =>
_commandsPane
.BackColor;
430
_commandsPane
.BackColor = value;
431
_commandsPane
.Label.BackColor = value;
442
get =>
_commandsPane
.ForeColor;
445
_commandsPane
.ForeColor = value;
446
_commandsPane
.Label.ForeColor = value;
457
get =>
_commandsPane
.Label.LinkColor;
458
set =>
_commandsPane
.Label.LinkColor = value;
468
get =>
_commandsPane
.Label.ActiveLinkColor;
469
set =>
_commandsPane
.Label.ActiveLinkColor = value;
479
get =>
_commandsPane
.Label.DisabledLinkColor;
480
set =>
_commandsPane
.Label.DisabledLinkColor = value;
491
get =>
_commandsPane
.BorderColor;
492
set =>
_commandsPane
.BorderColor = value;
500
public virtual bool CommandsVisible =>
_commandsPane
.Visible;
511
get =>
_commandsPane
.AllowVisible;
514
bool hotcommandsVisible =
_commandsPane
.Visible;
515
_commandsPane
.AllowVisible = value;
517
if (hotcommandsVisible !=
_commandsPane
.Visible)
520
_commandsPane
.Invalidate();
682
internal AccessibleObject CommandsPaneAccessibleObject =>
_commandsPane
.AccessibilityObject;