I am building some realtime report for a customer which is to be put up on a large LCD
screen. The report screen consists of a ListCtrl_virtual. I tried SetFont on the Ctrl,
but that didn't work.
The customer says he does not want to enlarge the font in windows, because it looks very bad.
I don't have access to such a large screen.
Is there a way I can enlarge all fonts in one go for my app?
Thanks,
Antonio
Not really. Most widgets will 'inherit' the font set on their parent at
the time that the widget is created, but it is not perfect.
--
Robin Dunn
Software Craftsman
http://wxPython.org
Robin,
do you have some recommendation? I am using listctrl and lictrl_virtual almost exclusively,
so enlarging those might me get to 95% of what I want to accomplish
Thanks,
Antonio.
Patrick,
thanks, this is giving me encouraging results!
Antonio.
> --
> To unsubscribe, send email to wxPython-user...@googlegroups.com
> or visit http://groups.google.com/group/wxPython-users?hl=en
Op 20-04-12 00:58, Patrick Maher schreef:
> Have you tried SetFont on the frame? E.g., in my frame initialization I put:Patrick,
>
> self.SetFont(wx.Font(9, wx.SWISS, wx.NORMAL, wx.NORMAL))
>
> Patrick
>
thanks, this is giving me encouraging results!
Patrick
The parent's font must be set before the child is created, as that is
when the attribute inheritance happens.
--
To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com
or visit http://groups.google.com/group/wxPython-users?hl=en