如何强制wx.ListCtrl滚动条自动锁定到底部以便最新的数据显示在窗口中?
当新数据进入我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加新项目后,您应该能够将
滚动条固定到底部。
After you add the new items, you should be able to use
to pin the scrollbar to the bottom.