开发者

Get scroll Position Percentage

I need to be able to determine when the user has scrolled through 60% of t开发者_运维技巧he content in a panel and I'm not having much luck finding a solution for this.

Thanks in advance for any ideas.


On Panel's Scroll Event, you can do

double scrollPercentage = (double) 
                scrollbar.VerticalScroll.Value / scrollBar.VerticalScroll.Maximum;

if (scrollPercentage > 0.6)
{
    ...
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜