C++ QTableView 列宽
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/26681578/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-28 11:40:08 来源:igfitidea点击:
QTableView column width
提问by splunk
I'm struggling to set column width manually in a QTableView
.
Why doesn't this piece of code work?
我正在努力在QTableView
. 为什么这段代码不起作用?
tabb = new QTableView;
tabb->resizeColumnsToContents();
for (int col=0; col<20; col++)
{
tabb->setColumnWidth(col,80);
}
If I omit tabb->resizeColumnsToContents();
it still doesn't work.
如果我省略tabb->resizeColumnsToContents();
它仍然不起作用。
回答by Kosovan
You should set model first and after this you will be able to change ColumnWidth
:
您应该首先设置模型,然后您将能够更改ColumnWidth
:
tabb = new QTableView;
tabb->setModel(someModel);
for (int col=0; col<20; col++)
{
tabb->setColumnWidth(col,80);
}