Qt模型/视图框架----简单的例子

#include<qapplication.h>

#include<qfilesystemmodel.h>

#include<qtreeview.h>

#include<qtableview>


int  main(intargc,char**argv)
{
QApplication app(argc,argv);
QFileSystemModel fileSM;
fileSM.setRootPath(QDir::homePath());

QTreeView treeV;
treeV.setModel(&fileSM);
treeV.setRootIndex(fileSM.index(QDir::homePath()));
treeV.show();

QTableView tableV;
tableV.setModel(&fileSM);
tableV.setRootIndex(fileSM.index(QDir::homePath()));
tableV.show();

return app.exec();
}






模型/视图/委托
posted @ 2014-04-26 11:17  Android开发8585  阅读(390)  评论(0编辑  收藏  举报