在HDevelop中
dev_open_file_dialog ('Images (*.jpg *.png)', 'read', 'D:/bb', Selection1) *作用:打开一个文件选择对话框 *参数1:文件筛选 * 'read_image' 表示read_image指令支持的文件 * 'Images (*.jpg *.tif *.tiff)' 显示jpg tif tiff文件 * 'JPEG Files (*.jpg);;TIFF-Files (*.tif *.tiff)' 显示jpg tif tiff文件,注意两种类型之间用;;隔开 * 'All Files (*)' 显示所有文件 * 不区分大小写,因此‘JPEG Files (*.jpg)' 和'JPEG Files (*.JPG)'提供相同的效果 *参数2:对话框的模式 * 'read' 读取对话框,只能选择一个文件 * 'read_multi' 读取对话框,能选择多个文件 * 'dir' 选择一个文件夹 * 'write' 保存对话框 * 'default' 默认--与前面打开的对话框相同 *参数3:初始路径 * 'default' 默认-与上一次相同 * 'D:/bb' 设置的路径 *参数4:用来保存选定的文件路径 * *
在QtCreator中