2 writes to _scrollBar
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
469
_scrollBar
= new VScrollBar();
965
_scrollBar
= null;
17 references to _scrollBar
System.Windows.Forms (17)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (17)
465
if (
_scrollBar
is null)
470
_scrollBar
.Scroll += OnScroll;
471
Controls.Add(
_scrollBar
);
474
return
_scrollBar
;
961
_scrollBar
?.Dispose();
1763
if (
_scrollBar
is null)
1949
private bool GetScrollbarHidden() =>
_scrollBar
is null || !ScrollBar.Visible;
1970
if (
_scrollBar
is not null)
3172
Debug.Assert(
_scrollBar
is not null);
3174
int large = fullNotches *
_scrollBar
.LargeChange;
3178
initialOffset -= fullNotches *
_scrollBar
.LargeChange;
3179
if (Math.Abs(initialOffset - originalOffset) >= Math.Abs(fullNotches *
_scrollBar
.LargeChange))
3213
if (
_scrollBar
!.Value <=
_scrollBar
.Minimum)
3224
if (
_scrollBar
!.Value > (
_scrollBar
.Maximum - _visibleRows + 1))
4761
_scrollBar
?.ReleaseUiaProvider(HWND.Null);