12.6. Fun Things to Try
When you use the Scrolled method, you are using frames without even knowing it. The newly scrolled widget is placed inside a frame with its scrollbars so that it behaves as one contained widget. Here are some other ways you can use frames:
Create several lines of labels with entry widgets. Each `line' needs to be in its own frame so it will look right.
Place an image along one side of your application window. Put the widgets in a frame (on the left or on the right) and place the image on the other side of them.
Place a scrolled listbox in your application window, a frame containing three buttons (OK, Cancel, Apply) along the bottom of the window, and a frame along the right containing two buttons (Delete, Add) that manipulate the listbox. By using frames, you can keep the buttons that belong together in one area instead of grouping them with other buttons that serve a different purpose.