Python GUI Tutorial - 40 - LabelFrame in TKinter

Pubblicato il: 10 agosto 2018
sul canale di: Indrajeet Singh
5,801
46

in this video you'll learn how we can add LabelFrame in tkinter application. LabelFrame is nothing but just a frame but having a label on top of it.

code used in this video-

from tkinter import *

root = Tk()

frame = LabelFrame(root, text="Input", padx=5, pady=5)

entry = Entry(frame)
entry.pack()

frame.pack()

root.geometry("300x300")
root.mainloop()

---------------------------------

i am sure your queries like -

1. how to add Label frame in tkinter?
2. how to add a label on the top of frame in tkinter?
3. how to rename a frame in tkinter?
4. how to add a frame having a name or label?

have been solved.

if you have any problem related with this video, then please let us know in comment box.

contact us -

facebook-   / programmingcage  
email - techgramacademy@gmail.com


In questa pagina del sito puoi guardare il video online Python GUI Tutorial - 40 - LabelFrame in TKinter della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Indrajeet Singh 10 agosto 2018, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 5,801 volte e gli è piaciuto 46 spettatori. Buona visione!