2012-05-30 47 views
0

如何在QT中動態添加多個表格視圖?意見表中不應該在屏幕在QT中動態添加表格視圖

+1

你有什麼試過?您是否閱讀過Qt文檔和示例,例如[基本佈局示例](http://doc.qt.nokia.com/main-snapshot/layouts-basiclayouts.html) – 2012-05-30 04:58:44

回答

0

相互/其他部件重疊對於動態

QTableView *t1=new QTableView(this); 
QTableView *t2=new QTableView(this); 

創建tableviews爲了處理重疊的問題相互

t1->setGeometry(x_pos,y_pos,width1,height1); 
t2->setGeometry(x_pos+t1->geometry().width(),y_pos,width2,height2); 
t1->show(); 
t2->show(); 

你必須保持跟蹤其他小部件的位置以及相應的幾何設置。