如何读取RichTextBox中附加的rtf文档?
我将 rtf 文档附加到我的应用程序中,我希望其内容显示在 RichTextBox 中,我知道如何使用磁盘中的 rtf 文件执行此操作,但我无法访问项目中的文件。
I attached rtf document to my app, and I want its content to be display in RichTextBox, I know how to do that with rtf file from disk, but I can't access file in project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将 rtf 文件添加为项目中的“嵌入式资源”,请在执行程序集上使用 GetManifestResourceStream 等函数。在此处查看示例:http://lamahashim .blogspot.com/2009/06/c-reading-embedded-files-at-runtime.html
If you added the rtf file as "Embedded Resource" in your project use GetManifestResourceStream etc functions on the executing assembly. Check out a sample here : http://lamahashim.blogspot.com/2009/06/c-reading-embedded-files-at-runtime.html