0

这是我第一次尝试 Python 的 GUI,我决定使用 Tkinter。我的脚本中有一个函数可以将文件夹中的所有 .txt 文件转换为 .xml 文件。但我想创建一个 GUI 按钮,只有在我单击按钮时才会运行我的功能。如果我不单击该按钮,则根本不会转换文件。我该怎么做?

4

1 回答 1

0

使用按钮的命令选项:

from Tkinter import Tk, Button

root = Tk()

def func():
    '''Place code to convert files in here'''

    print "Button has been pushed"

Button(text="Push me", command=func).grid()

root.mainloop()

func仅在按下按钮时运行。

于 2013-08-26T17:00:30.037 回答