Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. menubar = Menu(root)
  2. filemenu = Menu(menubar, tearoff=0)
  3. filemenu.add_command(label="Save Chat", command=changecwd_)
  4. filemenu.add_separator()
  5. filemenu.add_command(label="Exit", command=root.destroy)
  6. menubar.add_cascade(label="File", menu=filemenu)
  7.  
  8. helpmenu = Menu(menubar, tearoff=0)
  9. helpmenu.add_command(label="How To Connect...", command=menuconnect_)
  10. helpmenu.add_command(label="Commands...", command=commands_)
  11. helpmenu.add_command(label="About...", command=about_)
  12. menubar.add_cascade(label="Help", menu=helpmenu)
  13. root.config(menu=menubar) # displays the menu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement