我想将blob
带有实体框架的数据库中的内容(docx 文件)插入到RichEditcontrol
.
我使用这段代码:
using (this.myent Entities = new ())
{
this.myent Entities = new ();
src.DataSource = myent.doc_templates;
richEditControl1.DataBindings.Add ("Text", src, "doc_temlpate_content");
}
// enter code here
它将是一个丰富的编辑控件内容:
Byte [] array
什么是好的解决方案?我想我必须使用该RichEditControl.OpenXmlBytes
属性,但如何?