如何更改水平标题的高度(QTableWidget)
我有一个 QTableWidget,我想更改水平标题的大小。但只有一个设置宽度的函数。但是如何改变高度呢?希望有人能帮助我。
I have a QTableWidget and I want to change the size of the horizontalHeaders. But there is only a function to set the width. But how do you change the height? Hope someone can help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看文档(我当前的系统上没有Qt),您可以从
horizontalHeaderItem
获取QTableWidgetItem
,然后调用setSizeHint(QSize)< /code> 函数给它一个包含高度属性的大小。
Looking at the docs (I don't have Qt on my current system), you can get the
QTableWidgetItem
fromhorizontalHeaderItem
and then call thesetSizeHint(QSize)
function to give it a size which contains a height property.