16 references to ThumbTrack
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
28458
case ScrollEventType.
ThumbTrack
:
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
3688
if (se.Type != ScrollEventType.
ThumbTrack
&& se.NewValue != se.OldValue)
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
699
case ScrollEventType.
ThumbTrack
:
System.Windows.Forms.Tests (13)
System\Windows\Forms\ScrollBarTests.cs (4)
2816
yield return new object[] { msg, RightToLeft.No, 10, ScrollEventType.
ThumbTrack
, 10, ScrollEventType.
ThumbTrack
};
2817
yield return new object[] { msg, RightToLeft.Yes, 10, ScrollEventType.
ThumbTrack
, 10, ScrollEventType.
ThumbTrack
};
System\Windows\Forms\ToolStripTests.cs (9)
6616
int expected = eventType != ScrollEventType.
ThumbTrack
? 1 : 0;
6672
if (scrollEventType == ScrollEventType.
ThumbTrack
)
6682
yield return new object[] { new ScrollEventArgs(ScrollEventType.
ThumbTrack
, 100, 200), new Point(x, 1), new Point(0, 0) };
6683
yield return new object[] { new ScrollEventArgs(ScrollEventType.
ThumbTrack
, 200, 100), new Point(x, 1), new Point(0, 0) };
6684
yield return new object[] { new ScrollEventArgs(ScrollEventType.
ThumbTrack
, 0, 0), new Point(x, 1), new Point(0, 0) };
6717
if (scrollEventType == ScrollEventType.
ThumbTrack
)
6727
yield return new object[] { new ScrollEventArgs(ScrollEventType.
ThumbTrack
, 100, 200), new Point(x, 1), new Point(0, 0), 0 };
6728
yield return new object[] { new ScrollEventArgs(ScrollEventType.
ThumbTrack
, 200, 100), new Point(x, 1), new Point(0, 0), 0 };
6729
yield return new object[] { new ScrollEventArgs(ScrollEventType.
ThumbTrack
, 0, 0), new Point(x, 1), new Point(0, 0), 0 };