#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();
}
模型/视图/委托