我想通过wxhtml加载网页,并使用代码进行测试。 来自enter link description here
import wx
import wx.html
class MyHtmlFrame(wx.Frame):
def __init__(self, parent, title):
wx.Frame.__init__(self, parent, -1, title, size=(600,400))
html = wx.html.HtmlWindow(self)
if "gtk2" in wx.PlatformInfo:
html.SetStandardFonts()
wx.CallAfter(html.LoadPage, "http://www.google.com")
app = wx.PySimpleApp()
frm = MyHtmlFrame(None, "Simple HTML Browser")
frm.Show()
app.MainLoop()
答案 0 :(得分:0)
您发布的代码在Xubuntu 14.04上使用wxPython 2.8.12.1和Python 2.7为我工作。但是,我强烈建议您使用其他小部件。 HtmlWindow仅用于基本HTML,而不是用于加载网站。为此,我建议使用webview,我认为这是在wxPython 2.9中添加的。对于这类事情,它会更好。