I'm using wx.html.HtmlWindow to display some simple html, the css has imbeded in the html, but wxPython seems has ingored it. Does it support CSS?
If I use wx.lib.iewin, will the above problem be solved?
Can I use html string rather than url to fill in the window?
Is it convinent to capture clicking on links and trigger special events?
and where can i find the documentation of lib.iewin?
I'm using wx.html.HtmlWindow to display some simple html, the css has imbeded in the html, but wxPython seems has ingored it. Does it support CSS?
No.
If I use wx.lib.iewin, will the above problem be solved?
Yes, since is uses the Internet Explorer component.
Can I use html string rather than url to fill in the window?
Yes, there is a LoadString method in the IEHtmlWindow class.
Is it convinent to capture clicking on links and trigger special events?
and where can i find the documentation of lib.iewin?
It's a wrapper around the IE ActiveX control so you can find info about that in MSDN. For what is wrapped, what events and properties are available, and etc. look at the source in iewin.py
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!