Python GUI Tutorial - 40 - LabelFrame in TKinter

preview_player
Показать описание
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)

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

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 -

Рекомендации по теме
Комментарии
Автор

Thank you! Sir, I learned much from you !

logunscott
Автор

dear sir thansk for video, muchye root1 one say taxt puchye root2 or root3 per or photo bhi kaya karna ho ga sir pls tell me

gauravSingh-wsum
Автор

lable framek andr koi text likhna ho to kaisay likhain

zahrazaidi
Автор

How to color the squares on the labelframe?
If you guys know, please share me

forus