html_window_related.py
来自「wxPython的基本示例程序」· Python 代码 · 共 22 行
PY
22 行
import wximport wx.htmlclass MyHtmlFrame(wx.Frame): def __init__(self, parent, title): wx.Frame.__init__(self, parent, -1, title, size=(600,400)) self.CreateStatusBar() html = wx.html.HtmlWindow(self) if "gtk2" in wx.PlatformInfo: html.SetStandardFonts() html.SetRelatedFrame(self, self.GetTitle() + " -- %s") html.SetRelatedStatusBar(0) wx.CallAfter( html.LoadPage, "http://wxwidgets.org/manuals/2.6.2/wx_wxbutton.html")app = wx.PySimpleApp()frm = MyHtmlFrame(None, "Simple HTML Browser")frm.Show()app.MainLoop()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?