Wxpython。 wx.richtext.RichTextCtrl。网址清单

时间:2018-08-03 12:33:01

标签: python-3.x wxpython

有一个物体:

self.m_textCtrl_text = rt.RichTextCtrl(self.panel, -1, self.text, wx.DefaultPosition, (500, 100))

我定期在其中插入超链接:

urlStyle = rt.RichTextAttr()
urlStyle.SetTextColour(wx.Colour(attrs['fill']))
urlStyle.SetFontUnderlined(strToBool(attrs['underline']))

self.m_textCtrl_text.BeginStyle(urlStyle)
self.m_textCtrl_text.BeginURL(attrs['link'])
self.m_textCtrl_text.WriteText(attrs['text'])
self.m_textCtrl_text.EndURL()
self.m_textCtrl_text.EndStyle()

如何查找文本中的所有超链接?可以实现吗?

0 个答案:

没有答案