带有 richTextBox 的 DevExpress 报告

发布于 2024-08-04 07:25:37 字数 1022 浏览 2 评论 0原文

我正在使用 WPF RichTextBox 记录数据并将其保存在数据库中。现在,当我从数据库检索相同的数据并尝试在 DevExpress 报告中显示详细信息时,RichTextBox 值显示为单行文本,没有换行符或新行或表格格式。这就是我正在做的

将 FlowDocument 转换为 byte[] 以保存在数据库中。

var content = new TextRange(flowDocument.ContentStart, flowDocument.ContentEnd);
            if (content.CanSave(DataFormats.Rtf))
            {
                using (var stream = new MemoryStream())
                {
                    content.Save(stream, DataFormats.Rtf);
                    return stream.ToArray();
                }
            }

将字节数组转换为文本以在报告中显示

    FlowDocument doc = new FlowDocument();
string rtfText = null;
                        using (MemoryStream stream = new MemoryStream(byteArrayValue))
                        {
                            TextRange text = new TextRange(doc.ContentStart, doc.ContentEnd);
                            text.Load(stream, DataFormats.Text);
                            rtfText  = text.Text;

                        }

I am using WPF RichTextBox to record data and save the same in database. Now when i retrieve the same back from database and try to show the detail in a DevExpress report RichTextBox value appears as a single line of text without line break or new lines or table format. This is what i am doing

Converting FlowDocument to byte[] to save in database.

var content = new TextRange(flowDocument.ContentStart, flowDocument.ContentEnd);
            if (content.CanSave(DataFormats.Rtf))
            {
                using (var stream = new MemoryStream())
                {
                    content.Save(stream, DataFormats.Rtf);
                    return stream.ToArray();
                }
            }

Converting byte array to text to display in report

    FlowDocument doc = new FlowDocument();
string rtfText = null;
                        using (MemoryStream stream = new MemoryStream(byteArrayValue))
                        {
                            TextRange text = new TextRange(doc.ContentStart, doc.ContentEnd);
                            text.Load(stream, DataFormats.Text);
                            rtfText  = text.Text;

                        }

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文