python 打开文件对话框 filedialog tkinter GUI 编程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 打开文件对话框 filedialog tkinter GUI 编程相关的知识,希望对你有一定的参考价值。

- -读取文件的gui编程

 1 # _*_ coding:utf-8 _*_
 2 
 3 import tkinter
 4 from tkinter import filedialog
 5 
 6 def openfiles2():
 7     s2fname = filedialog.askopenfilename(title=打开S2文件, filetypes=[(S2out, *.out), (All Files, *)])
 8     print(s2fname)
 9 def openfilecgns():
10     cgnsfname = filedialog.askopenfilename(title=打开CGNS文件,filetypes=[(CGNSdat, *.dat), (All Files, *)] )
11     print(cgnsfname)
12  
13 root = tkinter.Tk()
14 #root.geometry(‘500x300+500+200‘)
15 btn1 = tkinter.Button(root, text=打开S2文件,font =("宋体",20,bold),width=13,height=8, command=openfiles2)
16 btn2 = tkinter.Button(root, text=打开CGNS文件,font = (宋体,20,bold),width=13,height=8, command=openfilecgns)
17  
18 btn1.pack(side=left)
19 btn2.pack(side=left)
20 root.mainloop()

- -

以上是关于python 打开文件对话框 filedialog tkinter GUI 编程的主要内容,如果未能解决你的问题,请参考以下文章

文件对话框,python,另存为

Java AWT 图形界面编程FileDialog 对话框 ( 打开文件 | 保存文件 | 构造函数 | 获取文件路径 | 获取文件名称 | 代码示例 )

Java AWT 图形界面编程FileDialog 对话框 ( 打开文件 | 保存文件 | 构造函数 | 获取文件路径 | 获取文件名称 | 代码示例 )

python 实现用对话框选择文件夹或文件(更新1,追加filedialog对话框用法详解)

java用FileDialog怎么打开和保存文件

java用swt 如何建立选择文件夹路径的对话框?