1 write to _helpPane
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
211_helpPane = new(this);
44 references to _helpPane
System.Windows.Forms (44)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (44)
212using SuspendLayoutScope suspendHelpPaneLayout = new(_helpPane, performLayout: false); 214_helpPane.TabStop = false; 215_helpPane.Dock = DockStyle.None; 216_helpPane.BackColor = SystemColors.Control; 217_helpPane.ForeColor = SystemColors.ControlText; 218_helpPane.MouseMove += OnChildMouseMove; 219_helpPane.MouseDown += OnChildMouseDown; 230Controls.AddRange([_helpPane, _commandsPane, _gridView, _toolStrip]); 619internal AccessibleObject HelpPaneAccessibleObject => _helpPane.AccessibilityObject; 629get => _helpPane.BackColor; 630set => _helpPane.BackColor = value; 641get => _helpPane.ForeColor; 642set => _helpPane.ForeColor = value; 653get => _helpPane.BorderColor; 654set => _helpPane.BorderColor = value; 671_helpPane.Visible = value; 674_helpPane.Invalidate(); 1862_helpPane?.ReleaseUiaProvider(HWND.Null); 1900if (_helpPane.Visible) 1902Point location = _helpPane.Location; 1906return _helpPane; 1928return _helpPane; 1939if (target == _helpPane && _commandsPane.Visible) 2212return _helpPane; 2601if (!_toolStrip.Visible && !_helpPane.Visible && !_commandsPane.Visible) 2642helpRequestedHeight = _helpPane.Visible ? _helpPane.Size.Height : 0; 2647if (_helpPane.Visible) 2649helpOptimalHeight = _helpPane.GetOptimalHeight(Size.Width - s_cyDivider); 2650if (_helpPane.UserSized) 2652helpRequestedHeight = _helpPane.Size.Height; 2705_helpPane.SetBounds(0, endSize - height, Size.Width, height); 2710_helpPane.UserSized = false; 2712else if (_helpPaneSizeRatio != -1 || _helpPane.UserSized) 2714_helpPaneSizeRatio = (_helpPane.Height * 100) / Height; 2717_helpPane.Invalidate(); 2718endSize = _helpPane.Location.Y - s_cyDivider; 2904if (_helpPane.Visible) 2908new Rectangle(0, yLast, width, _helpPane.Location.Y - yLast)); 2909yLast += _helpPane.Size.Height; 3629private void ResetHelpBackColor() => _helpPane.ResetBackColor(); 3631private void ResetHelpForeColor() => _helpPane.ResetBackColor(); 3694internal void SetStatusBox(string? title, string? description) => _helpPane.SetDescription(title, description); 4204_helpPane.UpdateTextRenderingEngine();