Changing default Font for all controls
Jeffrey Barish
jeff_barish at earthlink.net
Sat Sep 9 12:07:06 PDT 2006
Werner F. Bruhin wrote:
> What does one have to do to change the default Font for all controls?
Change the default font for the parent window. Children inherit. For
example, the following code in the main frame changes font size for all
descendents:
font = self.GetFont()
font.SetPointSize(16)
self.SetFont(font)
Check documentation for wxWindow for more information.
--
Jeffrey Barish
More information about the wxpython-users
mailing list