回复 1楼chenqu的帖子
包括格式传递,可以通过:
- private void Form1_Load(object sender, EventArgs e)
- {
- this.textControl1.Load("test.doc", TXTextControl.StreamType.MSWord);
- byte[] fs = new byte[] { };
- this.textControl1.Save(out fs, TXTextControl.BinaryStreamType.InternalUnicodeFormat);
- this.textControl2.Load(fs, TXTextControl.BinaryStreamType.InternalUnicodeFormat);
- }
复制代码 |