How do I feel the end of the scrolling of a .Net TrackBar user?

I have a TrackBar and have already handled the Scroll event, but it can fire 10 times while the user is scrolling, and I would like to update the file when the user finishes scrolling. How do I feel "end of scroll"? Will there be MouseUp and KeyUp for this purpose? thanks.

0


a source to share


1 answer


You should probably use a ScrollBar for this purpose. The Scroll event on the ScrollBar has a ScrollEventArgs that has a Type property, one of which is EndScroll.



+2


a source







All Articles