7. Tkinter: Place Layout
Channel:
Subscribers:
5,850
Published on ● Video Link: https://www.youtube.com/watch?v=CPBqfw2fYBQ
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()
Other Videos By Game Design with Reilly
2020-04-22 | 17. Tkinter: Combo Box |
2020-04-22 | 16. Tkinter: Checkboxes |
2020-04-22 | 15. Tkinter: Radio buttons |
2020-04-22 | 14. Tkinter: Text Entry |
2020-04-08 | 13. Tkinter: ScrollText |
2020-04-08 | 12. Tkinter: Notebook and keyboard inputs |
2020-04-08 | 11. Tkinter: Notebook |
2020-04-08 | 10. Tkinter: Keyboard input |
2020-04-08 | 9. Tkinter: Looping a grid |
2020-04-01 | 8. Tkinter: Frames |
2020-04-01 | 7. Tkinter: Place Layout |
2020-04-01 | 6. Tkinter: Grid Layout |
2020-04-01 | 5. Tkinter: Side Layout |
2020-04-01 | 4. Tkinter: Widget Functions |
2020-04-01 | 3. Tkinter: Widgets |
2020-04-01 | 2 Tkinter: First window |
2020-04-01 | 1 Tkinter: Introduction |
Tags:
Tkinter
python
introduction
intro
tutorial
inputs
outputs
widgets
window
layouts
keyboard
frames
grid
side
place