python写一个菜单主界面的窗口
时间: 2023-07-13 13:19:12 浏览: 68
好的,以下是一个使用 `tkinter` 库创建菜单主界面窗口的 Python 代码示例:
```python
from tkinter import *
def option1():
print("Option 1 selected")
def option2():
print("Option 2 selected")
def option3():
print("Option 3 selected")
def exit_app():
window.destroy()
# create the main window
window = Tk()
# set the window title
window.title("Main Menu")
# create the labels and buttons for the menu options
label = Label(window, text="Select an option:")
label.pack()
button1 = Button(window, text="Option 1", command=option1)
button1.pack()
button2 = Button(window, text="Option 2", command=option2)
button2.pack()
button3 = Button(window, text="Option 3", command=option3)
button3.pack()
exit_button = Button(window, text="Exit", command=exit_app)
exit_button.pack()
# run the main loop
window.mainloop()
```
以上代码将创建一个窗口,其中包含三个按钮和一个标签,每个按钮都对应一个选项。当用户单击一个按钮时,将调用相应的函数来执行该选项的操作。如果用户单击“退出”按钮,程序将关闭窗口并结束。
阅读全文