which event would notify me that the scrolling is finished in a scroll开发者_C百科 bar? I have a scroll bar in a panel. vScrollBar1_Scroll event tells me that scrolling has started. I want to be notified when it stops. Which event to use in C#?
Pay attention to e.Type in your Scroll event handler. It will be ScrollEventType.EndScroll after the user stops dragging the thumb.
精彩评论