2013-05-20 74 views
2

我想使用Office Open XML SDK将自定义标题添加到Word文档。我想继承默认的Heading1风格,但出于某种原因,下面的代码从头开始创建styles.xml文件,并且只包含我的新样式。将自定义标题添加到Word文档

我希望生成的styles.xml也包含默认样式(Normal,Heading1,Heading2,Heading3,...)。我该怎么办?

这里是我的代码:

 using (var package = WordprocessingDocument.Create(tempPath, WordprocessingDocumentType.Document)) 
     { 
      // Add a new main document part. 
      var mainPart = package.AddMainDocumentPart(); 

      var stylePart = mainPart.AddNewPart<StyleDefinitionsPart>(); 

      // we have to set the properties 
      var runProperties = new RunProperties(); 
      runProperties.Append(new Color { Val = "000000" }); // Color 
      runProperties.Append(new RunFonts { Ascii = "Arial" }); // Font Family 
      runProperties.Append(new Bold()); // it is Bold 
      runProperties.Append(new FontSize { Val = "28" }); //font size (in 1/72 of an inch) 

      //creation of a style 
      var style = new Style 
      { 
       StyleId = "MyHeading1", 
       Type = StyleValues.Paragraph, 
       CustomStyle = true 
      }; 
      style.Append(new StyleName { Val = "My Heading 1" }); //this is the name 
      // our style based on Heading1 style 
      style.Append(new BasedOn { Val = "Heading1" }); 
      // the next paragraph is Normal type 
      style.Append(new NextParagraphStyle { Val = "Normal" }); 
      style.Append(runProperties);//we are adding properties previously defined 

      // we have to add style that we have created to the StylePart 
      stylePart.Styles = new Styles(); 
      stylePart.Styles.Append(style); 
      stylePart.Styles.Save(); // we save the style part 

      ... 
     } 

这里是产生styles.xml文件:

<?xml version="1.0" encoding="utf-8"?> 
    <w:styles xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"> 
    <w:style w:type="paragraph" w:styleId="MyHeading1" w:customStyle="true"> 
    <w:name w:val="My Heading 1" /> 
    <w:basedOn w:val="Heading1" /> 
    <w:next w:val="Normal" /> 
    <w:rPr> 
     <w:color w:val="000000" /> 
     <w:rFonts w:ascii="Arial" /> 
     <w:b /> 
     <w:sz w:val="28" /> 
    </w:rPr> 
    </w:style> 
</w:styles> 

回答

3

我认为,这是因为你是从头开始创建一个新的文件,而不是立足您的文档在模板上。我认为默认样式来自您的Normal.dotm模板(C:\Users\<userid>\AppData\Roaming\Microsoft\Templates),并且您需要根据您的文档。我所做的是模板复制到文件的文件名和更改文件类型(从VB.NET未经测试的C#编译):

public WordprocessingDocument CreateDocumentFromTemplate(string templateFileName, string docFileName) 
{ 
    File.Delete(docFileName); 
    File.Copy(templateFileName, docFileName); 
    var doc = WordprocessingDocument.Open(docFileName, true); 
    doc.ChangeDocumentType(WordprocessingDocumentType.Document); 
    return doc; 
} 

您的代码将随后是这样的:

using (var doc = CreateDocumentFromTemplate(normalTemplatePath, tempPath)) 
{ 
    var stylePart = doc.MainDocumentPart.StyleDefinitionsPart; 
    ... 
} 

希望有所帮助!

+0

这就是我最终做的。我会将其标记为答案。这么晚才回复很抱歉。 – DDA

相关问题