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(); 1907_helpPane?.ReleaseUiaProvider(HWND.Null); 1945if (_helpPane.Visible) 1947Point location = _helpPane.Location; 1951return _helpPane; 1973return _helpPane; 1984if (target == _helpPane && _commandsPane.Visible) 2260return _helpPane; 2649if (!_toolStrip.Visible && !_helpPane.Visible && !_commandsPane.Visible) 2690helpRequestedHeight = _helpPane.Visible ? _helpPane.Size.Height : 0; 2695if (_helpPane.Visible) 2697helpOptimalHeight = _helpPane.GetOptimalHeight(Size.Width - s_cyDivider); 2698if (_helpPane.UserSized) 2700helpRequestedHeight = _helpPane.Size.Height; 2753_helpPane.SetBounds(0, endSize - height, Size.Width, height); 2758_helpPane.UserSized = false; 2760else if (_helpPaneSizeRatio != -1 || _helpPane.UserSized) 2762_helpPaneSizeRatio = (_helpPane.Height * 100) / Height; 2765_helpPane.Invalidate(); 2766endSize = _helpPane.Location.Y - s_cyDivider; 2952if (_helpPane.Visible) 2956new Rectangle(0, yLast, width, _helpPane.Location.Y - yLast)); 2957yLast += _helpPane.Size.Height; 3677private void ResetHelpBackColor() => _helpPane.ResetBackColor(); 3679private void ResetHelpForeColor() => _helpPane.ResetForeColor(); 3742internal void SetStatusBox(string? title, string? description) => _helpPane.SetDescription(title, description); 4246_helpPane.UpdateTextRenderingEngine();