QTableView 固定列宽度(鼠标拖动后,仍可固定)
Posted 朝闻道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QTableView 固定列宽度(鼠标拖动后,仍可固定)相关的知识,希望对你有一定的参考价值。
QTableView 提供一个函数:
void QTableView::setColumnWidth ( int column, int width )
用于设置column指定的列的宽度
但setColumnWidth设置后,用户可以通过鼠标拖拽列头重新设置宽度, 如何固定宽度不变?
联想到QWidget的setFixedWidth, 是不是QTableView也有个setFixedColumnWidth?
一番好找,setFixedColumnWidth没找到,:(, 结果是:
ui->tableView->horizontalHeader()->setResizeMode(column, QHeaderView::Fixed);
http://blog.csdn.net/longlijun/article/details/6070573
以上是关于QTableView 固定列宽度(鼠标拖动后,仍可固定)的主要内容,如果未能解决你的问题,请参考以下文章
table拖动(兼容Firefox 3.5/IE6),固定表格宽度