使用 Silverlight 将滚动查看器重置为其初始位置
我有一个 Silverlight 应用程序,其中包含网格布局中的滚动查看器。
当我向下移动滚动条并使用关闭按钮关闭此网格时,每当我重新打开网格时,滚动条都会保持在底部。
有没有办法可以将滚动条重置到顶部位置?
I have a Silverlight application, containing a scrollviewer in a grid layout.
When I move the scroller down and close this grid with the close button, the scroller remains at the bottom whenever I reopen the grid.
Is there a way I can reset the scroller to the top position?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你好,supriya khamesra,
请试试这个。
请将网格放入滚动查看器中,然后在网格选择更改后编写以下代码。
<代码>
grdDetail.ScrollToVerticalOffset(0d);
或
grdDetail.ScrollToTop();
Hello supriya khamesra,
Please Try this.
Please Put your grid inside scroll viewer and then write your bellow code after grid selection change.
grdDetail.ScrollToVerticalOffset(0d);
OR
grdDetail.ScrollToTop();