be05b43451
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42925 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
22 lines
616 B
Python
22 lines
616 B
Python
import wx
|
|
import wx.html
|
|
|
|
class 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()
|