When sending an event, DataGridView.Scrollyou can check if this was the end of the scroll (when dragging the scroll bar with the mouse, this is possible when the mouse button is released).
The problem is that this never happens. e.TypeneverScrollEventType.EndScroll
What happened to this? How can I do something only when scrolling is complete?
private void dataGridView_Scroll(object sender, ScrollEventArgs e)
{
if (e.Type == ScrollEventType.EndScroll)
{
}
}
source
share