wxPython - 如何在 wx.RichTextCtrl 中显示 html 格式的字符串
我正在尝试在 Richtext Ctrl 中显示一些字符串(html 格式)。在我的代码中,我尝试以这种方式使用它(self.txtmain 是 RichTextCtrl):
out = StringIO()
htmlhandler = rt.RichTextHTMLHandler()
buffer = self.txtmain.GetBuffer()
buffer.AddHandler(htmlhandler)
out.write(string)
out.seek(0)
htmlhandler.LoadStream(buffer, out)
self.txtmain.Refresh()
不会发出错误,但 RichTextCtrl 窗口不会更新。 我在这里缺少什么?
I'm trying to display some string (html formatted) in a Richtext Ctrl. In my code I tried to use it this way (self.txtmain is the RichTextCtrl):
out = StringIO()
htmlhandler = rt.RichTextHTMLHandler()
buffer = self.txtmain.GetBuffer()
buffer.AddHandler(htmlhandler)
out.write(string)
out.seek(0)
htmlhandler.LoadStream(buffer, out)
self.txtmain.Refresh()
No errors are issued, but the RichTextCtrl windows is not updated.
What am I missing here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看“wx.Layout()”,以更新窗口/小部件。
在某些情况下,我使用“wx.Layout()”来重绘整个窗口,
例如添加一个项目后,当我隐藏一个小部件并在同一位置显示另一个小部件时...
在这种情况下,self.Layout(),在 self 之后.txtmain.Refresh() ..
但是,我不确定它是否适合您的情况...
并且要从 StringIO() 检索内容必须使用 getvalue()
来
Take a look in "wx.Layout()", to update window/widget.
In certain cases i use "wx.Layout()" to redraw entire window, after add an item
for example, when i hide one and show another widget in same place...
in this case, self.Layout(), after self.txtmain.Refresh()..
But, i not sure it'd work in you case...
and to retrieve a content from a StringIO() must use getvalue()
to