标签: c++ qt
我需要将QTreeWidget中列的宽度设置为固定大小。 setColumnWidth()似乎没有效果,给定here的代码导致编译器错误“'headerView':不是'QTreeWidget'的成员”。
我正在使用Qt 4.7.4。
答案 0 :(得分:2)
QHeaderView :: resizeSection()可能适合您。尝试执行以下代码:
treeWidget->header()->resizeSection(index, width);