如何确保Python中qlistwidget上新添加的项目可见?

发布于 2024-12-12 04:10:16 字数 89 浏览 0 评论 0原文

当我在 qlistwiget 中添加一个项目并到达底部时。出现滚动条,如何确保从 qlistwidget 新添加的项目可见?或者我怎样才能将焦点集中到最后一个索引?

when i added an item in a qlistwiget and reaches the bottom. A scroll bar appears, how can i ensurevisible an item that was newly added from the qlistwidget? Or how can i get the focus to the last index?

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

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

发布评论

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

评论(2

最偏执的依靠 2024-12-19 04:10:16

QListWidget继承自QAbstractItemView,其中包含您正在寻找的方法:

QListWidget inherits from QAbstractItemView, which has the methods you are looking for:

夏雨凉 2024-12-19 04:10:16

创建新的 QListWidgetItem 后,将其传递给 QListWidget.scrollToItem 以确保它变得可见。

请注意,scrollToItem还有一个滚动提示 参数,允许微调项目在列表小部件中的重新定位方式。

After creating the new QListWidgetItem, pass it to QListWidget.scrollToItem to ensure that it becomes visible.

Note that scrollToItem also has a scroll hint parameter that allows fine-tuning of how the item is re-positioned in the list widget.

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