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(); 1866_helpPane?.ReleaseUiaProvider(HWND.Null); 1904if (_helpPane.Visible) 1906Point location = _helpPane.Location; 1910return _helpPane; 1932return _helpPane; 1943if (target == _helpPane && _commandsPane.Visible) 2216return _helpPane; 2605if (!_toolStrip.Visible && !_helpPane.Visible && !_commandsPane.Visible) 2646helpRequestedHeight = _helpPane.Visible ? _helpPane.Size.Height : 0; 2651if (_helpPane.Visible) 2653helpOptimalHeight = _helpPane.GetOptimalHeight(Size.Width - s_cyDivider); 2654if (_helpPane.UserSized) 2656helpRequestedHeight = _helpPane.Size.Height; 2709_helpPane.SetBounds(0, endSize - height, Size.Width, height); 2714_helpPane.UserSized = false; 2716else if (_helpPaneSizeRatio != -1 || _helpPane.UserSized) 2718_helpPaneSizeRatio = (_helpPane.Height * 100) / Height; 2721_helpPane.Invalidate(); 2722endSize = _helpPane.Location.Y - s_cyDivider; 2908if (_helpPane.Visible) 2912new Rectangle(0, yLast, width, _helpPane.Location.Y - yLast)); 2913yLast += _helpPane.Size.Height; 3633private void ResetHelpBackColor() => _helpPane.ResetBackColor(); 3635private void ResetHelpForeColor() => _helpPane.ResetBackColor(); 3698internal void SetStatusBox(string? title, string? description) => _helpPane.SetDescription(title, description); 4208_helpPane.UpdateTextRenderingEngine();