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)
220using 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; 228Controls.AddRange([_helpPane, _commandsPane, _gridView, _toolStrip]); 396public virtual bool CanShowCommands => _commandsPane.WouldBeVisible; 424get => _commandsPane.BackColor; 427_commandsPane.BackColor = value; 428_commandsPane.Label.BackColor = value; 439get => _commandsPane.ForeColor; 442_commandsPane.ForeColor = value; 443_commandsPane.Label.ForeColor = value; 454get => _commandsPane.Label.LinkColor; 455set => _commandsPane.Label.LinkColor = value; 465get => _commandsPane.Label.ActiveLinkColor; 466set => _commandsPane.Label.ActiveLinkColor = value; 476get => _commandsPane.Label.DisabledLinkColor; 477set => _commandsPane.Label.DisabledLinkColor = value; 488get => _commandsPane.BorderColor; 489set => _commandsPane.BorderColor = value; 497public virtual bool CommandsVisible => _commandsPane.Visible; 508get => _commandsPane.AllowVisible; 511bool hotcommandsVisible = _commandsPane.Visible; 512_commandsPane.AllowVisible = value; 514if (hotcommandsVisible != _commandsPane.Visible) 517_commandsPane.Invalidate(); 679internal AccessibleObject CommandsPaneAccessibleObject => _commandsPane.AccessibilityObject;