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)
216
using 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;
234
Controls.AddRange([
_helpPane
, _commandsPane, _gridView, _toolStrip]);
623
internal AccessibleObject HelpPaneAccessibleObject =>
_helpPane
.AccessibilityObject;
633
get =>
_helpPane
.BackColor;
634
set =>
_helpPane
.BackColor = value;
645
get =>
_helpPane
.ForeColor;
646
set =>
_helpPane
.ForeColor = value;
657
get =>
_helpPane
.BorderColor;
658
set =>
_helpPane
.BorderColor = value;
675
_helpPane
.Visible = value;
678
_helpPane
.Invalidate();
1907
_helpPane
?.ReleaseUiaProvider(HWND.Null);
1945
if (
_helpPane
.Visible)
1947
Point location =
_helpPane
.Location;
1951
return
_helpPane
;
1973
return
_helpPane
;
1984
if (target ==
_helpPane
&& _commandsPane.Visible)
2260
return
_helpPane
;
2649
if (!_toolStrip.Visible && !
_helpPane
.Visible && !_commandsPane.Visible)
2690
helpRequestedHeight =
_helpPane
.Visible ?
_helpPane
.Size.Height : 0;
2695
if (
_helpPane
.Visible)
2697
helpOptimalHeight =
_helpPane
.GetOptimalHeight(Size.Width - s_cyDivider);
2698
if (
_helpPane
.UserSized)
2700
helpRequestedHeight =
_helpPane
.Size.Height;
2753
_helpPane
.SetBounds(0, endSize - height, Size.Width, height);
2758
_helpPane
.UserSized = false;
2760
else if (_helpPaneSizeRatio != -1 ||
_helpPane
.UserSized)
2762
_helpPaneSizeRatio = (
_helpPane
.Height * 100) / Height;
2765
_helpPane
.Invalidate();
2766
endSize =
_helpPane
.Location.Y - s_cyDivider;
2952
if (
_helpPane
.Visible)
2956
new Rectangle(0, yLast, width,
_helpPane
.Location.Y - yLast));
2957
yLast +=
_helpPane
.Size.Height;
3677
private void ResetHelpBackColor() =>
_helpPane
.ResetBackColor();
3679
private void ResetHelpForeColor() =>
_helpPane
.ResetForeColor();
3742
internal void SetStatusBox(string? title, string? description) =>
_helpPane
.SetDescription(title, description);
4246
_helpPane
.UpdateTextRenderingEngine();