用python,闯将一个窗口,其中包含三个Button组件,当用户分别点击按钮时,会触发button_click函数,从而分别输出"haha" "woa" "55"。
时间: 2023-05-26 21:02:04 浏览: 108
以下是实现代码:
```python
import tkinter as tk
def button_click1():
print("haha")
def button_click2():
print("woa")
def button_click3():
print("55")
root = tk.Tk()
root.title("Button Example")
button1 = tk.Button(root, text="Button 1", command=button_click1)
button1.pack()
button2 = tk.Button(root, text="Button 2", command=button_click2)
button2.pack()
button3 = tk.Button(root, text="Button 3", command=button_click3)
button3.pack()
root.mainloop()
```
首先导入tkinter模块,并定义三个按钮点击事件函数button_click1、button_click2和button_click3,分别输出"haha"、"woa"和"55"。
然后创建一个窗口对象root,并设置标题为"Button Example"。
接着创建三个Button组件,分别绑定对应的点击事件函数,并使用pack()方法将它们添加到窗口中。
最后使用mainloop()方法使窗口进入消息循环,等待用户的操作。当用户点击按钮时,对应的事件函数会被调用,从而输出对应的信息。
阅读全文