需求踢得好,批准你转岗产品经理了。
用Free Spire.Doc库读取Word文档中的内容,可以保留文档内容的大致格式。
代码:
private void ReadText_Click(object sender, EventArgs e) { Document doc = new Document(); doc.LoadFromFile("1.docx"); textBox1.Multiline = true;
textBox1.Width = 200;
textBox1.Height = 200; textBox1.Text = doc.GetText(); }
请问这个Documen怎么引入啊,using不进去啊,提示没有
@想和你一日三餐: 要下载,安装后在项目中引用安装路径bin文件夹下Spire.Doc.dll,然后添加相应的命名空间Spire.Doc