OpenXml,Word和C#

时间:2015-04-29 09:19:05

标签: c# openxml

以下是我的问题:我尝试使用 OpenXml C#执行邮件合并。为此,我必须创建一个Word文档,其页面数与我的数据集中的行数相同(我的数据集是 CSV文件)。

我创建了一个新文档,并且我试图在本文档的每个页面上复制我的模板。不幸的是,只有第一页具有正确的格式(我的模板被复制在其上)。要复制,我使用我尝试从我的模板复制到我的新word文档的每个页面的InnerXml

我知道我的问题来自我的指示,但我不知道如何修复它。

这是我的代码:

string fileName = @"MyTemplate";
using (WordprocessingDocument pkgDoc = WordprocessingDocument.Open(fileName, true))
{
    pkgDoc.ChangeDocumentType(DocumentFormat.OpenXml.WordprocessingDocumentType.Document);
    var test = (pkgDoc.MainDocumentPart.RootElement.InnerXml);

    string filenamecible = @"@MyNewWordDocument";

    using (WordprocessingDocument package = WordprocessingDocument.Create(filenamecible, WordprocessingDocumentType.Document))
    {
        MainDocumentPart mainPart = package.AddMainDocumentPart();

        //Create DOM tree for simple document. 

        mainPart.Document = new Document();

        for (int i = 0; i < csvline.Count; i++)
        {
            mainPart.RootElement.InnerXml = test;
            var x = new Break() { Type = BreakValues.Page };;
            mainPart.Document.Append(x);
            mainPart.Document.Save();
        }

        package.MainDocumentPart.Document.Save();
    }

}

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,如果有人遇到同样的问题,那就是代码:

string fileName = @"MyTemplate";
using (WordprocessingDocument pkgDoc = WordprocessingDocument.Open(fileName, true))
{
    pkgDoc.ChangeDocumentType(DocumentFormat.OpenXml.WordprocessingDocumentType.Document);
    var test = (pkgDoc.MainDocumentPart.RootElement.InnerXml);

string filenamecible = @"@MyNewWordDocument";

using (WordprocessingDocument package = WordprocessingDocument.Create(filenamecible, WordprocessingDocumentType.Document))
{
    MainDocumentPart mainPart = package.AddMainDocumentPart();

    //Create DOM tree for simple document. 

    mainPart.Document = new Document();

    for (int i = 0; i < csvline.Count; i++)
    {
         var x = new Break() { Type = BreakValues.Page };
         Body b = new Body(test);
         mainPart.Document.Append(b);
         mainPart.Document.Append(x);
         mainPart.Document.Save();
    }

    package.MainDocumentPart.Document.Save();
}

}