提问人:tushar 提问时间:5/15/2022 更新时间:5/15/2022 访问量:187
如何在Qt中QTableView的一列中添加水平滚动条?
How to add Horizontal scrollbar in one of the column in QTableView in Qt?
问:
我有一个有 3 列。列是,,.我想在列中添加,因为该列中的名称很长。QTableView
Name
Type
Show
Horizontal Scrollbar
Name
How to add Horizontal scrollbar in one of the column in QTableView?
这是我的代码:
void myView :: CreateTable()
{
myTable = new QTableView();
myTable ->setAlternatingRowColors(true);
myTable ->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
mymodel = new QStandardItemModel(this);
mymodel ->setColumnCount(3);
mymodel ->setHeaderData(0, Qt::Horizontal, tr("Name"));
mymodel ->setHeaderData(1, Qt::Horizontal, tr("Type"));
mymodel ->setHeaderData(2, Qt::Horizontal, tr("Show"));
}
答: 暂无答案
评论
QTableView
QScrollArea
QScrollBar