使用 Silverlight 将滚动查看器重置为其初始位置

发布于 2024-12-03 04:11:58 字数 127 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡水深流 2024-12-10 04:11:58

你好,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();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文