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