Python-GUI程序设计-3

Posted 易行软件

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-GUI程序设计-3相关的知识,希望对你有一定的参考价值。

代码1:

import tkinter.filedialog
from  tkinter import *
from tkinter import messagebox

def OpenFile():
    filename=filedialog.askopenfilename()
    messagebox.showinfo("温馨提示:",filename)

w=Tk()
w.title("打开文档测试")
Button(w,text="打开文件",command=OpenFile).pack()
w.mainloop()

代码2:

import tkinter.colorchooser
from tkinter import *
from tkinter import messagebox
def OpenColor():
    colorvalue=colorchooser.askcolor()
    messagebox.showinfo("温馨提示:",colorvalue)

w=Tk()
w.geometry("500x500")
Button(w,text="选择颜色",command=OpenColor).pack()
w.mainloop()

以上是关于Python-GUI程序设计-3的主要内容,如果未能解决你的问题,请参考以下文章

Python-GUI程序设计-3

Python-GUI程序设计-2

Python-GUI程序设计

python-GUI

Python-GUI编程-PyQt5

Sleep() 方法后的代码片段没有被执行