wxPython 嵌入html页面
Posted muamaker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wxPython 嵌入html页面相关的知识,希望对你有一定的参考价值。
#codeing=utf-8 import wx import wx.html2 class MyBrowser(wx.Dialog): def __init__(self, *args, **kwds): wx.Dialog.__init__(self, *args, **kwds) sizer = wx.BoxSizer(wx.VERTICAL) self.browser = wx.html2.WebView.New(self) sizer.Add(self.browser, 1, wx.EXPAND, 10) self.SetSizer(sizer) self.SetSize((700, 700)) if __name__ == ‘__main__‘: app = wx.App() dialog = MyBrowser(None, -1) dialog.browser.LoadURL("https://www.baidu.com/?tn=91960356_hao_pg") #加载页面。如果是加载html字符串应该使用 dialog.browser.SetPage(html_string,"") dialog.Show() app.MainLoop()
以上是关于wxPython 嵌入html页面的主要内容,如果未能解决你的问题,请参考以下文章