QSqltaleModel设置列宽
作者:互联网
horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);//所有列都扩展自适应宽度,填充充满整个屏幕宽度
tableview->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents );//根据列内容来定列宽
tableview->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Fixed);//对第0列单独设置固定宽度
tableview->setColumnWidth(0, 45);//设置固定宽度
标签:QHeaderView,tableview,QSqltaleModel,setSectionResizeMode,宽度,设置,horizontalHeader, 来源: https://www.cnblogs.com/mc-r/p/15468751.html