Recipe 10-1. Using wx.Frame Styles
Problem
The wxPython Frame widget is used in almost all wxPython applications. It has the Minimize, Maximize, and Close buttons on it as well as the caption along the top that identifies the application. The wx.Frame class allows you to modify its styles in such a way that you can remove or disable various buttons and features
. In this chapter, we will look at some of the ways that you can change the behavior of the wx.Frame widget. Specifically, I will cover the following:
- Different ways to create a default frame
- How to create a frame without a caption (i.e., ...