1 write to _helpPane
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
209_helpPane = new(this);
44 references to _helpPane
System.Windows.Forms (44)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (44)
210using SuspendLayoutScope suspendHelpPaneLayout = new(_helpPane, performLayout: false); 212_helpPane.TabStop = false; 213_helpPane.Dock = DockStyle.None; 214_helpPane.BackColor = SystemColors.Control; 215_helpPane.ForeColor = SystemColors.ControlText; 216_helpPane.MouseMove += OnChildMouseMove; 217_helpPane.MouseDown += OnChildMouseDown; 228Controls.AddRange([_helpPane, _commandsPane, _gridView, _toolStrip]); 617internal AccessibleObject HelpPaneAccessibleObject => _helpPane.AccessibilityObject; 627get => _helpPane.BackColor; 628set => _helpPane.BackColor = value; 639get => _helpPane.ForeColor; 640set => _helpPane.ForeColor = value; 651get => _helpPane.BorderColor; 652set => _helpPane.BorderColor = value; 669_helpPane.Visible = value; 672_helpPane.Invalidate(); 1864_helpPane?.ReleaseUiaProvider(HWND.Null); 1902if (_helpPane.Visible) 1904Point location = _helpPane.Location; 1908return _helpPane; 1930return _helpPane; 1941if (target == _helpPane && _commandsPane.Visible) 2214return _helpPane; 2603if (!_toolStrip.Visible && !_helpPane.Visible && !_commandsPane.Visible) 2644helpRequestedHeight = _helpPane.Visible ? _helpPane.Size.Height : 0; 2649if (_helpPane.Visible) 2651helpOptimalHeight = _helpPane.GetOptimalHeight(Size.Width - s_cyDivider); 2652if (_helpPane.UserSized) 2654helpRequestedHeight = _helpPane.Size.Height; 2707_helpPane.SetBounds(0, endSize - height, Size.Width, height); 2712_helpPane.UserSized = false; 2714else if (_helpPaneSizeRatio != -1 || _helpPane.UserSized) 2716_helpPaneSizeRatio = (_helpPane.Height * 100) / Height; 2719_helpPane.Invalidate(); 2720endSize = _helpPane.Location.Y - s_cyDivider; 2906if (_helpPane.Visible) 2910new Rectangle(0, yLast, width, _helpPane.Location.Y - yLast)); 2911yLast += _helpPane.Size.Height; 3631private void ResetHelpBackColor() => _helpPane.ResetBackColor(); 3633private void ResetHelpForeColor() => _helpPane.ResetBackColor(); 3696internal void SetStatusBox(string? title, string? description) => _helpPane.SetDescription(title, description); 4206_helpPane.UpdateTextRenderingEngine();