码迷,mamicode.com
首页 > 其他好文 > 详细

用QComboBox实现tree状结构(QComboBox居然欧setView函数)

时间:2015-12-22 21:10:47      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:

实现的效果图如下: 
技术分享

#include "mainwindow.h" 
#include <QApplication> 
#include <QTreeView> 
#include <QFileSystemModel> 
#include <QComboBox> 
#include <QDir>

int main(int argc, char *argv[]) 
{

QApplication a(argc, argv);
MainWindow w;
// 创建文件系统模型
QFileSystemModel *model = new QFileSystemModel(&w);
// 指定要监视的目录
model->setRootPath(QDir::currentPath());
QTreeView *tree = new QTreeView(&w);
tree->setModel(model);
tree->setRootIndex(model->index(QDir::currentPath()));
QComboBox *b = new QComboBox(&w);
b->resize(400, 20);
b->setView(tree);
b->setModel(model);
b->show();

w.show();

return a.exec();

} 
///////完

http://blog.csdn.net/u011915578/article/details/47783577

用QComboBox实现tree状结构(QComboBox居然欧setView函数)

标签:

原文地址:http://www.cnblogs.com/findumars/p/5068071.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!