码迷,mamicode.com
首页 > 编程语言 > 详细

Python GUI编程(Tkinter)17、Menu鼠标右键菜单

时间:2020-05-19 16:34:10      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:语言   def   ade   bar   imp   int   item   ui编程   eve   

import tkinter

win = tkinter.Tk()
win.title("sunck")
win.geometry("400x400+200+20")

#菜单条
menubar = tkinter.Menu(win)

#菜单
menu = tkinter.Menu(menubar, tearoff=False)
for item in ["Python", "C", "C++", "OC", "Swift", "C#", "shell", "Java", "JS", "PHP", "汇编", "NodeJS", "退出"]:
menu.add_command(label=item)

menubar.add_cascade(label="语言", menu=menu)

def showMenu(event):
menubar.post(event.x_root, event.y_root)
win.bind("<Button-3>", showMenu)


win.mainloop()

Python GUI编程(Tkinter)17、Menu鼠标右键菜单

标签:语言   def   ade   bar   imp   int   item   ui编程   eve   

原文地址:https://www.cnblogs.com/pygo/p/12917596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!