mysql存储富文本格式_将富文本框的数据以格式存储到数据库

本文介绍如何在WPF应用中将富文本框的格式化内容(如斜体、颜色、粗体)保存到MySQL数据库,并在加载时保持格式。使用TextRange和DataFormats.Rtf进行存储和恢复,确保富文本格式不丢失。
摘要由CSDN通过智能技术生成

bd96500e110b49cbb3cd949968f18be7.png

I am new at wpf and I want to store the data of the rich text box along with its formatting (Italic, colored, Bold..) into a database (Mysql).

currently when i save the data, formatting is ignored.

in addition, it shows all the text in the same line when i load it back to the rich text box from the database.

Looking forward to your help and suggestions!

public void save()

{

MySqlConnection conn = new MySqlConnection(connString);

MySqlCommand command = conn.CreateCommand();

string richText = new TextRange(rt1.Document.ContentStart, rt1.Document.ContentEnd).Text;

string s = WebUtility.HtmlEncode(richText);

command.Parameters.AddWithValue("@s", s);

command.CommandText

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值