22 references to ScrollBar
System.Windows.Forms (22)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (19)
1791
int pos =
ScrollBar
.Value;
1893
Size sizeScroll =
ScrollBar
.Size;
1972
private bool GetScrollbarHidden() => _scrollBar is null || !
ScrollBar
.Visible;
1995
Rectangle boundsScroll =
ScrollBar
.Bounds;
1999
ScrollBar
.Bounds = boundsScroll;
2091
if (newValue ==
ScrollBar
.Value
2093
|| newValue >
ScrollBar
.Maximum
2094
|| (newValue + (
ScrollBar
.LargeChange - 1) >= TotalProperties))
3657
e.NewValue =
ScrollBar
.Value;
3668
ScrollBar
.Value = e.NewValue;
3673
SelectGridEntry(oldGridEntry, pageIn:
ScrollBar
.Value == TotalProperties);
4272
if (newOffset >=
ScrollBar
.Minimum && newOffset <
ScrollBar
.Maximum)
4582
int oldPosition =
ScrollBar
.Value;
4585
ScrollBar
.Value = newPosition;
4845
bool hidden = !
ScrollBar
.Visible;
4848
ScrollBar
.LargeChange = _visibleRows - 1;
4853
ScrollBar
.Maximum = Math.Max(0, TotalProperties - 1);
4857
ScrollBar
.Visible = hidden;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridPositionData.cs (3)
34
if (delta != 0 && gridView.
ScrollBar
.Visible)
44
else if (delta > gridView.
ScrollBar
.Maximum)
46
delta = gridView.
ScrollBar
.Maximum - 1;