22 references to ScrollBar
System.Windows.Forms (22)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (19)
1768
int pos =
ScrollBar
.Value;
1870
Size sizeScroll =
ScrollBar
.Size;
1949
private bool GetScrollbarHidden() => _scrollBar is null || !
ScrollBar
.Visible;
1972
Rectangle boundsScroll =
ScrollBar
.Bounds;
1976
ScrollBar
.Bounds = boundsScroll;
2068
if (newValue ==
ScrollBar
.Value
2070
|| newValue >
ScrollBar
.Maximum
2071
|| (newValue + (
ScrollBar
.LargeChange - 1) >= TotalProperties))
3619
e.NewValue =
ScrollBar
.Value;
3630
ScrollBar
.Value = e.NewValue;
3635
SelectGridEntry(oldGridEntry, pageIn:
ScrollBar
.Value == TotalProperties);
4234
if (newOffset >=
ScrollBar
.Minimum && newOffset <
ScrollBar
.Maximum)
4550
int oldPosition =
ScrollBar
.Value;
4553
ScrollBar
.Value = newPosition;
4813
bool hidden = !
ScrollBar
.Visible;
4816
ScrollBar
.LargeChange = _visibleRows - 1;
4821
ScrollBar
.Maximum = Math.Max(0, TotalProperties - 1);
4825
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;