我如何在 devexpress 的 XtraGrid 列中显示 htmltext
我让 Xtragrid 显示数据表详细信息。在数据表中,我在一列中有 html 文本。我想显示该列的 html 文本。请任何人帮忙
I am having the Xtragrid showing the datatable details. In the datatable I am having html text in one column. I want to show html Text for that column. Any one please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将列的
ColumnEdit
属性设置为RepositoryItemRichTextEdit< 的实例/代码>类
。将
RepositoryItemRichTextEdit.DocumentFormat
属性设置为DevExpress.XtraRichEdit.DocumentFormat.Html
。这应该允许您实现所需的行为。
You should set the column's
ColumnEdit
property to an instance of theRepositoryItemRichTextEdit
class. Set theRepositoryItemRichTextEdit.DocumentFormat
property toDevExpress.XtraRichEdit.DocumentFormat.Html
.This should allow you to achieve the required behavior.