22 references to ScrollBar
System.Windows.Forms (22)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (19)
1797int pos = ScrollBar.Value; 1899Size sizeScroll = ScrollBar.Size; 1978private bool GetScrollbarHidden() => _scrollBar is null || !ScrollBar.Visible; 2001Rectangle boundsScroll = ScrollBar.Bounds; 2005ScrollBar.Bounds = boundsScroll; 2097if (newValue == ScrollBar.Value 2099|| newValue > ScrollBar.Maximum 2100|| (newValue + (ScrollBar.LargeChange - 1) >= TotalProperties)) 3669e.NewValue = ScrollBar.Value; 3680ScrollBar.Value = e.NewValue; 3685SelectGridEntry(oldGridEntry, pageIn: ScrollBar.Value == TotalProperties); 4284if (newOffset >= ScrollBar.Minimum && newOffset < ScrollBar.Maximum) 4594int oldPosition = ScrollBar.Value; 4597ScrollBar.Value = newPosition; 4857bool hidden = !ScrollBar.Visible; 4860ScrollBar.LargeChange = _visibleRows - 1; 4865ScrollBar.Maximum = Math.Max(0, TotalProperties - 1); 4869ScrollBar.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;