Project: Using the links below as a guide create the GUI contained in
1. What components should appear on the screen? This involves
choosing the components that make the user interface. Typical components
include things like buttons, entry fields, check boxes, radio buttons, and scroll
bars. In Tkinter the components that you add to your GUI are called widgets.
The Radiobutton Widget (Sample Code)
The Scrollbar Widget (Scrollbar to Textbox) (Scrollbar to Frame)
2. Where should the components go? This involves deciding the positioning or placement of each component in the overall design structure. In Tkinter, this is referred to as geometry management.
widget_name.place(relx=?, rely=?, relwidth=?, relheight=?)
relheight, relwidth − Height and width as a float between 0.0 and 1.0, as a fraction of the height and width of the parent widget.
relx, rely − Horizontal and vertical offset as a float between 0.0 and 1.0, as a fraction of the height and width of the parent widget.