存储 QListWidget 列宽

发布于 2024-12-11 16:07:49 字数 152 浏览 0 评论 0原文

我正在尝试存储 QListWidget QTableWidget 列的宽度。用户可以根据自己的意愿调整它们,但关闭应用程序会使一切恢复到“正常”宽度。

我一直在尝试寻找“columnResize”或“resize”信号。但没见过类似的东西。

I'm trying to store the widths of a QListWidget QTableWidget's columns. The user might adjust them as he wishes, but closing the app makes everything go back to 'normal' widths.

I've been trying to look for a 'columnResize' or 'resize' signal. But haven't seen something similar to it.

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

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

发布评论

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

评论(1

岁月静好 2024-12-18 16:07:49

我假设您的意思是 QTreeWidget 而不是 QListWidget,因为后者没有列。列的宽度可以这样检索:

columns = [tree.columnWidth(index) for index in range(tree.columnCount())]

然后,您可以在应用程序关闭时保存此列表。

编辑

注意:相同的代码适用于 QTableWidget。

I assume you mean QTreeWidget rather than QListWidget, as the latter does not have columns. The widths of the columns can be retrieved like this:

columns = [tree.columnWidth(index) for index in range(tree.columnCount())]

You can then save this list when your application closes.

EDIT

NB: The same code will work with a QTableWidget.

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