1 write to _helpPane
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
215_helpPane = new(this);
44 references to _helpPane
System.Windows.Forms (44)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (44)
216using SuspendLayoutScope suspendHelpPaneLayout = new(_helpPane, performLayout: false); 218_helpPane.TabStop = false; 219_helpPane.Dock = DockStyle.None; 220_helpPane.BackColor = SystemColors.Control; 221_helpPane.ForeColor = SystemColors.ControlText; 222_helpPane.MouseMove += OnChildMouseMove; 223_helpPane.MouseDown += OnChildMouseDown; 234Controls.AddRange([_helpPane, _commandsPane, _gridView, _toolStrip]); 623internal AccessibleObject HelpPaneAccessibleObject => _helpPane.AccessibilityObject; 633get => _helpPane.BackColor; 634set => _helpPane.BackColor = value; 645get => _helpPane.ForeColor; 646set => _helpPane.ForeColor = value; 657get => _helpPane.BorderColor; 658set => _helpPane.BorderColor = value; 675_helpPane.Visible = value; 678_helpPane.Invalidate(); 1914_helpPane?.ReleaseUiaProvider(HWND.Null); 1952if (_helpPane.Visible) 1954Point location = _helpPane.Location; 1958return _helpPane; 1980return _helpPane; 1991if (target == _helpPane && _commandsPane.Visible) 2267return _helpPane; 2656if (!_toolStrip.Visible && !_helpPane.Visible && !_commandsPane.Visible) 2697helpRequestedHeight = _helpPane.Visible ? _helpPane.Size.Height : 0; 2702if (_helpPane.Visible) 2704helpOptimalHeight = _helpPane.GetOptimalHeight(Size.Width - s_cyDivider); 2705if (_helpPane.UserSized) 2707helpRequestedHeight = _helpPane.Size.Height; 2760_helpPane.SetBounds(0, endSize - height, Size.Width, height); 2765_helpPane.UserSized = false; 2767else if (_helpPaneSizeRatio != -1 || _helpPane.UserSized) 2769_helpPaneSizeRatio = (_helpPane.Height * 100) / Height; 2772_helpPane.Invalidate(); 2773endSize = _helpPane.Location.Y - s_cyDivider; 2959if (_helpPane.Visible) 2963new Rectangle(0, yLast, width, _helpPane.Location.Y - yLast)); 2964yLast += _helpPane.Size.Height; 3684private void ResetHelpBackColor() => _helpPane.ResetBackColor(); 3686private void ResetHelpForeColor() => _helpPane.ResetForeColor(); 3749internal void SetStatusBox(string? title, string? description) => _helpPane.SetDescription(title, description); 4256_helpPane.UpdateTextRenderingEngine();