1 write to _scrollBar
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ByteViewer.cs (1)
446
_scrollBar
= new VScrollBar();
35 references to _scrollBar
System.Windows.Forms.Design (35)
System\ComponentModel\Design\ByteViewer.cs (35)
435
[MemberNotNull(nameof(
_scrollBar
))]
447
_scrollBar
.ValueChanged += ScrollChanged;
448
_scrollBar
.TabStop = true;
449
_scrollBar
.TabIndex = 0;
450
_scrollBar
.Dock = DockStyle.Right;
451
_scrollBar
.Visible = false;
468
Controls.Add(
_scrollBar
, 0, 0);
484
_scrollBar
.Hide();
485
_scrollBar
.Maximum = _linesCount - 1;
486
_scrollBar
.LargeChange = _rowCount;
487
_scrollBar
.Show();
488
_scrollBar
.Enabled = true;
493
_scrollBar
.Hide();
494
_scrollBar
.Maximum = _rowCount;
495
_scrollBar
.LargeChange = _rowCount;
496
_scrollBar
.Show();
497
_scrollBar
.Enabled = false;
500
_scrollBar
.Select();
509
_scrollBar
.Select();
525
_scrollBar
.Show();
567
if (
_scrollBar
is not null)
571
_scrollBar
.Hide();
572
_scrollBar
.Maximum = _linesCount - 1;
573
_scrollBar
.LargeChange = _rowCount;
574
_scrollBar
.Show();
575
_scrollBar
.Enabled = true;
576
_scrollBar
.Select();
580
_scrollBar
.Enabled = false;
601
_startLine =
_scrollBar
.Value;
634
_scrollBar
.Hide();
643
_scrollBar
.Hide();
651
if (_linesCount > _rowCount && !
_scrollBar
.Visible)
653
_scrollBar
.Show();
655
_scrollBar
.Invalidate();
656
_scrollBar
.Select();