帮我用python写一个windows窗口
时间: 2024-11-09 11:20:22 浏览: 6
Python实现遍历windows所有窗口并输出窗口标题的方法
5星 · 资源好评率100%
在Python中,你可以使用`tkinter`库来创建基本的Windows GUI应用程序。下面是一个简单的例子,展示如何创建一个具有标题、标签和按钮的窗口:
```python
import tkinter as tk
# 创建主窗口
root = tk.Tk()
root.title("My First Python Window") # 设置窗口标题
# 添加标签
label = tk.Label(root, text="Hello, World!", font=("Arial", 16))
label.pack() # 将标签添加到窗口中央
# 添加按钮
def button_click():
label.config(text="Button Clicked!")
button = tk.Button(root, text="Click Me", command=button_click)
button.pack()
# 运行主循环
root.mainloop()
```
在这个示例中,当你运行这个脚本时,会弹出一个带有"Hello, World!"标签和"Click Me"按钮的窗口。点击按钮后,标签文本会变成"Button Clicked!"。
阅读全文