Skip to content

Latest commit

 

History

History

tkinter

Creating GUI applications with Python module tkinter

Content:

1. 'Hello World' application with Tkinter module - first-program.py

Topics covered:

  • module import
  • creating the main window
  • setting window size
  • creating a button
  • mainloop

2. 'Feedback Form' application with Tkinter module - feedback-form.py

Topics covered:

  • creating labels
  • creating input fields

3. 'Radio buttons and checkboxes' application with Tkinter module - radio-buttons-checkboxes.py

Topics covered:

  • creating radioboxes
  • creating checkboxes

4. 'Scale' application with Tkinter module - scale.py

Topics covered:

  • Creating scale in tkinter

5. 'Scrollbar' application with Tkinter module - scrollbar.py

Topics covered:

  • Creating a scrollbar in tkinter

6. 'Toplevel' app with Tkinter module - toplevel.py

Topics covered:

  • Creating toplevel windows with Tkinter