Exemplo n.º 1
0
from menu_win import makemenu
from tkinter import *

root = Tk()
for i in range(3):
    win = Toplevel(root)
    makemenu(win)
    Label(win, bg='black', height=5, width=25).pack(expand=YES, fill=BOTH)
Button(root, text='Bye', command=root.quit).pack()
root.mainloop()
Exemplo n.º 2
0
from menu_win import makemenu
from Tkinter import *

root = Tk( )
for i in range(3):                  # Three pop-up windows with menus   
    makemenu(root)
    Label(root, bg='black', height=5, width=15).pack(expand=YES, fill=BOTH)
Button(root, text="Bye", command=root.quit).pack( )
root.mainloop( )


Exemplo n.º 3
0
from menu_win import makemenu
from tkinter import *
root = Tk()
for i in range(3):
	win = Toplevel(root)
	makemenu(win)
	Label(win, bg='black', height=5, width=35).pack(expand=YES, fill=BOTH)
Button(root, text='Bye', command=root.quit).pack()
root.mainloop()
Exemplo n.º 4
0
from menu_win import makemenu
from Tkinter import *

root = Tk()
for i in range(3):  # Three pop-up windows with menus
    makemenu(root)
    Label(root, bg='black', height=5, width=15).pack(expand=YES, fill=BOTH)
Button(root, text="Bye", command=root.quit).pack()
root.mainloop()