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))
3634
e.NewValue =
ScrollBar
.Value;
3645
ScrollBar
.Value = e.NewValue;
3650
SelectGridEntry(oldGridEntry, pageIn:
ScrollBar
.Value == TotalProperties);
4249
if (newOffset >=
ScrollBar
.Minimum && newOffset <
ScrollBar
.Maximum)
4559
int oldPosition =
ScrollBar
.Value;
4562
ScrollBar
.Value = newPosition;
4822
bool hidden = !
ScrollBar
.Visible;
4825
ScrollBar
.LargeChange = _visibleRows - 1;
4830
ScrollBar
.Maximum = Math.Max(0, TotalProperties - 1);
4834
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;