1 write to _helpPane
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
209
_helpPane
= new(this);
44 references to _helpPane
System.Windows.Forms (44)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (44)
210
using SuspendLayoutScope suspendHelpPaneLayout = new(
_helpPane
, performLayout: false);
212
_helpPane
.TabStop = false;
213
_helpPane
.Dock = DockStyle.None;
214
_helpPane
.BackColor = SystemColors.Control;
215
_helpPane
.ForeColor = SystemColors.ControlText;
216
_helpPane
.MouseMove += OnChildMouseMove;
217
_helpPane
.MouseDown += OnChildMouseDown;
228
Controls.AddRange([
_helpPane
, _commandsPane, _gridView, _toolStrip]);
617
internal AccessibleObject HelpPaneAccessibleObject =>
_helpPane
.AccessibilityObject;
627
get =>
_helpPane
.BackColor;
628
set =>
_helpPane
.BackColor = value;
639
get =>
_helpPane
.ForeColor;
640
set =>
_helpPane
.ForeColor = value;
651
get =>
_helpPane
.BorderColor;
652
set =>
_helpPane
.BorderColor = value;
669
_helpPane
.Visible = value;
672
_helpPane
.Invalidate();
1864
_helpPane
?.ReleaseUiaProvider(HWND.Null);
1902
if (
_helpPane
.Visible)
1904
Point location =
_helpPane
.Location;
1908
return
_helpPane
;
1930
return
_helpPane
;
1941
if (target ==
_helpPane
&& _commandsPane.Visible)
2214
return
_helpPane
;
2603
if (!_toolStrip.Visible && !
_helpPane
.Visible && !_commandsPane.Visible)
2644
helpRequestedHeight =
_helpPane
.Visible ?
_helpPane
.Size.Height : 0;
2649
if (
_helpPane
.Visible)
2651
helpOptimalHeight =
_helpPane
.GetOptimalHeight(Size.Width - s_cyDivider);
2652
if (
_helpPane
.UserSized)
2654
helpRequestedHeight =
_helpPane
.Size.Height;
2707
_helpPane
.SetBounds(0, endSize - height, Size.Width, height);
2712
_helpPane
.UserSized = false;
2714
else if (_helpPaneSizeRatio != -1 ||
_helpPane
.UserSized)
2716
_helpPaneSizeRatio = (
_helpPane
.Height * 100) / Height;
2719
_helpPane
.Invalidate();
2720
endSize =
_helpPane
.Location.Y - s_cyDivider;
2906
if (
_helpPane
.Visible)
2910
new Rectangle(0, yLast, width,
_helpPane
.Location.Y - yLast));
2911
yLast +=
_helpPane
.Size.Height;
3631
private void ResetHelpBackColor() =>
_helpPane
.ResetBackColor();
3633
private void ResetHelpForeColor() =>
_helpPane
.ResetBackColor();
3696
internal void SetStatusBox(string? title, string? description) =>
_helpPane
.SetDescription(title, description);
4206
_helpPane
.UpdateTextRenderingEngine();