22 references to ScrollBar
System.Windows.Forms (22)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (19)
1792
int pos =
ScrollBar
.Value;
1894
Size sizeScroll =
ScrollBar
.Size;
1973
private bool GetScrollbarHidden() => _scrollBar is null || !
ScrollBar
.Visible;
1996
Rectangle boundsScroll =
ScrollBar
.Bounds;
2000
ScrollBar
.Bounds = boundsScroll;
2092
if (newValue ==
ScrollBar
.Value
2094
|| newValue >
ScrollBar
.Maximum
2095
|| (newValue + (
ScrollBar
.LargeChange - 1) >= TotalProperties))
3658
e.NewValue =
ScrollBar
.Value;
3669
ScrollBar
.Value = e.NewValue;
3674
SelectGridEntry(oldGridEntry, pageIn:
ScrollBar
.Value == TotalProperties);
4273
if (newOffset >=
ScrollBar
.Minimum && newOffset <
ScrollBar
.Maximum)
4583
int oldPosition =
ScrollBar
.Value;
4586
ScrollBar
.Value = newPosition;
4846
bool hidden = !
ScrollBar
.Visible;
4849
ScrollBar
.LargeChange = _visibleRows - 1;
4854
ScrollBar
.Maximum = Math.Max(0, TotalProperties - 1);
4858
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;