44 references to EndScroll
System.Windows.Forms (4)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
26522ScrollEventType scrollEventType = ScrollEventType.EndScroll; 28415else if (se.Type != ScrollEventType.EndScroll)
System\Windows\Forms\Scrolling\ScrollableControl.cs (1)
1440if (type != ScrollEventType.EndScroll)
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
559DoScroll(ScrollEventType.EndScroll);
System.Windows.Forms.Tests (40)
System\Windows\Forms\ScrollBarTests.cs (32)
2245new(ScrollEventType.EndScroll, 9, 9), 2254new(ScrollEventType.EndScroll, 9, 9), 2264new(ScrollEventType.EndScroll, 8, 8), 2273new(ScrollEventType.EndScroll, 0, 0), 2283new(ScrollEventType.EndScroll, 0, 0), 2293new(ScrollEventType.EndScroll, 98, 98), 2303new(ScrollEventType.EndScroll, 9, 9), 2312new(ScrollEventType.EndScroll, 9, 9), 2322new(ScrollEventType.EndScroll, 8, 8), 2331new(ScrollEventType.EndScroll, 0, 0), 2341new(ScrollEventType.EndScroll, 0, 0), 2351new(ScrollEventType.EndScroll, 98, 98), 2362new(ScrollEventType.EndScroll, 11, 11), 2371new(ScrollEventType.EndScroll, 11, 11), 2381new(ScrollEventType.EndScroll, 12, 12), 2390new(ScrollEventType.EndScroll, 91, 91), 2399new(ScrollEventType.EndScroll, 91, 91), 2409new(ScrollEventType.EndScroll, 91, 91), 2419new(ScrollEventType.EndScroll, 11, 11), 2428new(ScrollEventType.EndScroll, 11, 11), 2438new(ScrollEventType.EndScroll, 12, 12), 2447new(ScrollEventType.EndScroll, 91, 91), 2456new(ScrollEventType.EndScroll, 91, 91), 2466new(ScrollEventType.EndScroll, 91, 91), 2814yield return new object[] { msg, RightToLeft.No, 10, ScrollEventType.EndScroll, 10, ScrollEventType.EndScroll }; 2815yield return new object[] { msg, RightToLeft.Yes, 10, ScrollEventType.EndScroll, 10, ScrollEventType.EndScroll }; 2822yield return new object[] { msg, RightToLeft.No, 10, ScrollEventType.EndScroll + 1, 10, ScrollEventType.EndScroll + 1 }; 2823yield return new object[] { msg, RightToLeft.Yes, 10, ScrollEventType.EndScroll + 1, 10, ScrollEventType.EndScroll + 1 };
System\Windows\Forms\ScrollEventArgsTests.cs (8)
12[InlineData((ScrollEventType.EndScroll + 1), -2)] 14[InlineData(ScrollEventType.EndScroll, 0)] 26[InlineData((ScrollEventType.EndScroll + 1), -2, -2)] 28[InlineData(ScrollEventType.EndScroll, 0, 0)] 40[InlineData((ScrollEventType.EndScroll + 1), -2, (ScrollOrientation.HorizontalScroll - 1))] 42[InlineData(ScrollEventType.EndScroll, 0, ScrollOrientation.VerticalScroll)] 54[InlineData((ScrollEventType.EndScroll + 1), -2, -2, (ScrollOrientation.HorizontalScroll - 1))] 56[InlineData(ScrollEventType.EndScroll, 0, 0, ScrollOrientation.VerticalScroll)]