创建源 Office Open XML 文档
本主题演示如何创建本教程其他示例中使用的 Office Open XML WordprocessingML 文档。如果您按照这些说明操作,您的输出结果将与每个示例中提供的输出相匹配。
不过,本教程中的示例可以使用任何有效的 WordprocessingML 文档。
若要创建本教程使用的文档,您必须安装 2007 Microsoft Office 系统,或者具有适用于 Word、Excel 和 PowerPoint 2007 文件格式的 Microsoft Office 兼容性包的 Microsoft Office 2003。
创建 WordprocessingML 文档
创建 WordprocessingML 文档
创建一个新的 Microsoft Word 文档。
将以下文本粘贴到新文档中:
Parsing WordprocessingML with LINQ to XML The following example prints to the console. using System; class Program { public static void Main(string[] args) { Console.WriteLine("Hello World"); } } This example produces the following output: Hello World
用“标题 1”样式格式化第一行。
选择包含 C# 代码的行。第一行以 using 关键字开头。最后一行是最后一个右大括号。用 courier 字体格式化这些行。用新样式格式化这些行并将新样式命名为“Code”。
最后,选择包含输出的整个行,并用 Code 样式格式化该行。
保存文档,并将其命名为 SampleDoc.docx。如果使用的是 Microsoft Word 2003,请在**“保存类型”下拉列表中选择“Word 2007 文档”**。