是否可以将格式从其他应用程序复制到 Silverlight RichTextBox 中?
现在我正在使用 RichTextBox 中的银光。 我正在尝试从 Office Word 等其他应用程序复制一些内容。然而我所能得到的只是没有任何格式的痛苦文本。 是否可以从Word或PDF文件中复制字体大小、字体颜色等格式的内容?
谢谢!
Now I'm playing with the RichTextBox in Silverlight.
I'm trying to copy some content from other application like Office Word. However all I can get is the pain TEXT without any format.
Is possible to copy the content from word or PDF file with the format like font-size, font-color?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,在 Silverlight 4 中,您可以从剪贴板获取的数据存在限制。
您可以从剪贴板获取纯文本,但不能获取原始数据本身(例如:图像、富文本格式的文本等)。
在新版本的 Silverlight 允许您从剪贴板获取原始数据之前,恐怕这是不可能的,即使使用第三方 RichTextBox 也是如此。
Unfortunately, in Silverlight 4, there's a limitation on the data you can get from the clipboard.
You are allowed to get the plain text from the clipboard but not the raw data itself (ex: images, rich text formated text, etc).
Until a new version of Silverlight allow you to get the raw data from the clipboard, I'm afraid it won't be possible, even with a third party RichTextBox.