Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4463372
  • 博文数量: 1148
  • 博客积分: 25453
  • 博客等级: 上将
  • 技术积分: 11949
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-06 21:14
文章分类

全部博文(1148)

文章存档

2012年(15)

2011年(1078)

2010年(58)

分类: C/C++

2011-07-21 09:19:47

工程代码: 12.rar  
http://devbean.blog.51cto.com/448512/213414
Qt学习之路pdf
 
 Qt学习之路(1-60).part3.rar    Qt学习之路(1-60).part1.rar    Qt学习之路(1-60).part2.rar  

  1. void MainWindow::open()
  2. {
  3.    // QMessageBox::information(NULL,tr("Open"),tr("open a file"));
  4.    //QFileDialog是Qt中,文件打开和保存的对话框
  5.     QString path = QFileDialog::getOpenFileName(this,tr("Open Image"),".",tr("Image Files(*.jpg *.png)"));
  6.     if(path.length() == 0)
  7.     {
  8.         QMessageBox::information(NULL,tr("Path"),tr("didn't select any files"));
  9.     }
  10.     else
  11.     {
  12.         QMessageBox::information(NULL,tr("Path"),tr("you select") + path);
  13.     }
  14. }









阅读(680) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~