码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-09-16 22:01:43      阅读:586      评论:0      收藏:0      [点我收藏+]

标签:file   text   pen   tle   UI   loop   man   读取   pac   

- -读取文件的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 编程

标签:file   text   pen   tle   UI   loop   man   读取   pac   

原文地址:http://www.cnblogs.com/anloveslife/p/7532686.html

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