wxPython:从 RichTextCtrl 复制文本

发布于 2024-12-02 17:04:18 字数 150 浏览 0 评论 0原文

我一直在试图弄清楚如何将富文本从 RichTextCtrl 复制到剪贴板。我可以很好地复制文本,但不能复制富文本信息。例如,如果我从 RichTextCtrl 复制一些粗体文本,然后将其粘贴到另一个程序中,那么它只是纯文本。

有什么想法吗?

谢谢, 彼得

I've been trying to figure out how to copy rich text from a RichTextCtrl to the clipboard. I'm able to copy the text just fine, but not the rich text information. For example, if I copy some bold text from my RichTextCtrl and then paste it in to another program, it is just plain text.

Any ideas?

Thanks,
Peter

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初懵 2024-12-09 17:04:18

查看 PyRTFParser 项目。

来自项目网站:

...剪切、复制和粘贴方法
RichTextCtrl仅支持纯文本,不支持格式化
文字

通过剪切/复制/粘贴 RTF 格式的文本
Windows 上的 Word 和 Word 之间的剪贴板
OS X 上的文本编辑已在
PyRTFParserDemo.py 文件。

Take a look at the PyRTFParser project.

From the project website:

...the Cut, Copy, and Paste methods in the
RichTextCtrl support only plain text, not formatted
text

Cut / Copy / Paste of RTF-formatted text through the
clipboard between Word on Windows and Word and
TextEdit on OS X has been implemented in the
PyRTFParserDemo.py file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文