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)
212
using 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;
230
Controls.AddRange([
_helpPane
, _commandsPane, _gridView, _toolStrip]);
619
internal AccessibleObject HelpPaneAccessibleObject =>
_helpPane
.AccessibilityObject;
629
get =>
_helpPane
.BackColor;
630
set =>
_helpPane
.BackColor = value;
641
get =>
_helpPane
.ForeColor;
642
set =>
_helpPane
.ForeColor = value;
653
get =>
_helpPane
.BorderColor;
654
set =>
_helpPane
.BorderColor = value;
671
_helpPane
.Visible = value;
674
_helpPane
.Invalidate();
1866
_helpPane
?.ReleaseUiaProvider(HWND.Null);
1904
if (
_helpPane
.Visible)
1906
Point location =
_helpPane
.Location;
1910
return
_helpPane
;
1932
return
_helpPane
;
1943
if (target ==
_helpPane
&& _commandsPane.Visible)
2216
return
_helpPane
;
2605
if (!_toolStrip.Visible && !
_helpPane
.Visible && !_commandsPane.Visible)
2646
helpRequestedHeight =
_helpPane
.Visible ?
_helpPane
.Size.Height : 0;
2651
if (
_helpPane
.Visible)
2653
helpOptimalHeight =
_helpPane
.GetOptimalHeight(Size.Width - s_cyDivider);
2654
if (
_helpPane
.UserSized)
2656
helpRequestedHeight =
_helpPane
.Size.Height;
2709
_helpPane
.SetBounds(0, endSize - height, Size.Width, height);
2714
_helpPane
.UserSized = false;
2716
else if (_helpPaneSizeRatio != -1 ||
_helpPane
.UserSized)
2718
_helpPaneSizeRatio = (
_helpPane
.Height * 100) / Height;
2721
_helpPane
.Invalidate();
2722
endSize =
_helpPane
.Location.Y - s_cyDivider;
2908
if (
_helpPane
.Visible)
2912
new Rectangle(0, yLast, width,
_helpPane
.Location.Y - yLast));
2913
yLast +=
_helpPane
.Size.Height;
3633
private void ResetHelpBackColor() =>
_helpPane
.ResetBackColor();
3635
private void ResetHelpForeColor() =>
_helpPane
.ResetBackColor();
3698
internal void SetStatusBox(string? title, string? description) =>
_helpPane
.SetDescription(title, description);
4208
_helpPane
.UpdateTextRenderingEngine();