How do we remove the "Show more fonts" button when we use wx.FontDialog?

dlg = wx.FontDialog(self, data)
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The dialogs in wxPython are created using internal OS calls, so they look differently on different operating systems and wxPython only provides interfaces to them. The dialog you see is just the typical Windows 7 Font dialog box.

So the question is whether we can change system dialog boxes, and the easy answer to this question is: No, that's impossible. See this thread for details.

However, Windows 7 has several Font dialog templates and you can choose what template to use, but that is the hard way (see this MSDN article for details).

Hope this helps.

link|improve this answer
feedback

As Andrey said, you can't do it since wxPython is wrapping the native dialog. The only way around this limitation besides what he mentioned is to roll your own font dialog with wx.Dialog.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.