如何将 WPF 富文本框转换为字符串
我了解了如何在 RichTextBox 类。
但我喜欢将其文本保存到数据库,就像以前在 Windows 窗体 中一样。
string myData = richTextBox.Text;
dbSave(myData);
我该怎么做呢?
I saw how to set a WPF rich text box in RichTextBox Class.
Yet I like to save its text to the database like I used to, in Windows Forms.
string myData = richTextBox.Text;
dbSave(myData);
How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 MSDN RichTextBox 参考的底部有 如何从 RichTextBox 中提取文本内容的链接
指向 看起来像这样:
At the bottom of the MSDN RichTextBox reference there's a link to How to Extract the Text Content from a RichTextBox
It's going to look like this: