Layout : Layout : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Layout »

 

Layout


Layout: fit text side


from Tkinter import *

class App:
    def __init__(self, master):
        fm = Frame(master)
        Button(fm, text='Top').pack(side=TOP)
        Button(fm, text='This is the Center button').pack(side=TOP)
        Button(fm, text='Bottom').pack(side=TOP)        
        fm.pack()

root = Tk()
root.option_add('*font', ('verdana', 12'bold'))
root.title("Pack - Example 2a")
display = App(root)
root.mainloop()

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» Layout