存储 QListWidget 列宽
我正在尝试存储 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您的意思是
QTreeWidget
而不是QListWidget
,因为后者没有列。列的宽度可以这样检索:然后,您可以在应用程序关闭时保存此列表。
编辑
注意:相同的代码适用于 QTableWidget。
I assume you mean
QTreeWidget
rather thanQListWidget
, as the latter does not have columns. The widths of the columns can be retrieved like this:You can then save this list when your application closes.
EDIT
NB: The same code will work with a QTableWidget.