如何强制wx.ListCtrl滚动条自动锁定到底部以便最新的数据显示在窗口中?

发布于 2024-10-15 17:18:41 字数 132 浏览 4 评论 0原文

当新数据进入我的 wx.ListCtrl 时,窗口会填满并出现滚动条。我想要做的是将最新数据(在列表底部)显示在窗口上。我的第一个想法是强制 wx.ListCtrl 滚动条默认位于窗口底部的方法。如果有另一种/更好的方法可以做到这一点,我会洗耳恭听。

As new data comes into my wx.ListCtrl the window fills up and scroll bars appear. What I want to do is to have the most current data (at the bottom of the list) displayed on the windows. My first idea was a way to force the wx.ListCtrl scroll bars to default to the bottom of the window. If there is another/better way to do this I am all ears.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

ゝ偶尔ゞ 2024-10-22 17:18:41

添加新项目后,您应该能够将

self.EnsureVisible(self.GetItemCount() - 1)

滚动条固定到底部。

After you add the new items, you should be able to use

self.EnsureVisible(self.GetItemCount() - 1)

to pin the scrollbar to the bottom.

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