在 wxPython StyledTextCtrl 中更改字体



我一直在使用wxPython编码,遇到了一个问题。我创建了一个FontDialog函数,该函数也会更改字体。问题是我无法更改字体。在tkinter中,您可以widget.config(font=font)字体并立即更改。我一直无法弄清楚如何在wxPython StyledTextCtrl上做到这一点。任何帮助将不胜感激。这是我当前的代码:

定义小部件:

self.control = wx.stc.StyledTextCtrl(self, style=wx.TE_MULTILINE)
self.control.SetMarginWidth(1, 0)
self.control.SetScrollWidth(wx.stc.STC_CACHE_CARET)
self.CreateStatusBar()

调用字体函数:

self._font = self.formatmenu.Append(wx.ID_SELECT_FONT, 'Font...', 'Change the font displayed in the editor')
self.Bind(wx.EVT_MENU, self.font_func, self._font)

该函数:

def font_func(self, event):
    dialog = wx.FontDialog()
    if dialog.ShowModal() == wx.ID_CANCEL:
        return
    font = wx.Font(dialog.GetFont())
    self.control.StyleSetFont(0, font=font) # Here is my error - nothing happens.

谢谢,莱戈鲁伊。

我认为您使用FontDialog的方式只是返回当前字体。
您需要访问GetFontData函数,如下所示:

>>> dlg = wx.FontDialog(None)
>>> if dlg.ShowModal()==wx.ID_OK:
...  font = dlg.GetFontData().GetChosenFont()
...  print(font.GetFaceName())
... 
Times New Roman

相关内容

  • 没有找到相关文章

最新更新