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