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();
}

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


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


模型/视图/委托
上一篇:Delphi中Inputbox 和Inputquery 函数的使用


下一篇:HTTPS 原理解析