我如何制作一个激活程序的按钮?有点像电子游戏。 如果您想解决这个问题,请将这些请求付诸实践。 1.它需要在 Python 3 中 2.它需要相当简单。
由于
答案 0 :(得分:3)
我不知道你通过激活一个程序是什么意思,但是在下面的例子中通过" command = Funtcion_name"你可以点击按钮
获得你想要的东西from tkinter import *
from tkinter import messagebox
def pushTheButton():
messagebox.showinfo("Outcome of pushing the button", " You have pushed the button!")
root = Tk()
button = Button(root, text = "Push me", command = pushTheButton)
button.pack()
root.mainloop()