7. Tkinter: Place Layout

Subscribers:
5,850
Published on ● Video Link: https://www.youtube.com/watch?v=CPBqfw2fYBQ



Duration: 2:52
83 views
0


Video code

from tkinter import *

window = Tk()
window.title("My program")
window.geometry("350x200")
window.resizable(False,False)

label = Label(window, text="Click me")
label.place(x=20,y=30,width=120,height=25)

button = Button(window, text="Click here")
button.place(x=200,y=130,width=60,height=65)


window.mainloop()







Tags:
Tkinter
python
introduction
intro
tutorial
inputs
outputs
widgets
window
layouts
keyboard
frames
grid
side
place