Java JXTable有一个列控件,允许用户显示/隐藏列。
QTableView有类似的东西吗?我知道有an API call to show/hide a column,但是当你使用带有QTableView的程序时,这没有用。
答案 0 :(得分:0)
使用表中的水平标题并调用hide部分传递要隐藏的索引,我将其链接到上下文菜单中的信号,该菜单获取右键单击的列的索引
table_view->horizontalHeader()->hideSection(index);
编辑:和显示列类似
table_view->horizontalHeader()->showSection(index);
从QPoint获取索引(我从请求上下文菜单的位置获取)
int index = table_view->horizontalHeader()->logicalIndexAt(cursor_pos);