horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);//所有列都扩展自适应宽度,填充充满整个屏幕宽度
//horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents );//根据列内容来定列宽
horizontalHeader()->setSectionResizeMode(0, QHeaderView::Fixed);//对第0列单独设置固定宽度
setColumnWidth(0, 45);//设置固定宽度
注意:设置固定的列宽要在qtableview->seModel(model);之后进行设置,不然无效 还有异常现象
效果:第0列宽度固定大小,其他列自动扩展填充宽度
转载自:https://blog.csdn.net/u013255206/article/details/78282514