5

我只需要.pptx使用 C# 创建一个带有 1 个虚拟幻灯片的文件并将其保存到当前目录。谁能告诉我该怎么做?

到目前为止,我有这个代码来创建一个 Powerpoint 演示文稿:

Microsoft.Office.Interop.PowerPoint.Application obj = new Application();
obj.Visible = Microsoft.Office.Core.MsoTriState.msoTrue;
4

3 回答 3

1

此代码片段创建一个新的演示文稿:

    private void DpStartPowerPoint()
{
    // Create the reference variables
    PowerPoint.Application ppApplication = null;
    PowerPoint.Presentations ppPresentations = null;
    PowerPoint.Presentation ppPresentation = null;

    // Instantiate the PowerPoint application
    ppApplication = new PowerPoint.Application();

    // Create a presentation collection holder
    ppPresentations = ppApplication.Presentations;

    // Create an actual (blank) presentation
    ppPresentation = ppPresentations.Add(Office.MsoTriState.msoTrue);

    // Activate the PowerPoint application
    ppApplication.Activate();
}

这个代码片段保存了它:

    // Assign a filename under which to save the presentation
string myFileName = "myPresentation";

// Save the presentation unconditionally
ppPresentation.Save();

// Save the presentation as a PPTX
ppPresentation.SaveAs(myFileName,
                      PowerPoint.PpSaveAsFileType.ppSaveAsDefault, 
                      Office.MsoTriState.msoTrue);

// Save the presentation as a PDF
ppPresentation.SaveAs(myFileName,
                      PowerPoint.PpSaveAsFileType.ppSaveAsPDF, 
                      Office.MsoTriState.msoTrue);

// Save a copy of the presentation
ppPresentation.SaveCopyAs(“Copy of “ + myFileName,
                          PowerPoint.PpSaveAsFileType.ppSaveAsDefault, 
                          Office.MsoTriState.msoTrue);

有关其他 PowerPoint 自动化功能的参考,请参阅此页面

于 2013-03-07T16:48:57.910 回答
1

以下资源包括如何保存文件以及有关如何使用以下方法操作Ms - Power Point演示文件的许多其他代码示例C#

http://code.msdn.microsoft.com/office/CSAutomatePowerPoint-b312d416

http://www.eggheadcafe.com/community/csharp/2/10068596/create-ppt-slides-through-cnet.aspx

希望这可以帮助

编辑:

以下包括有关添加引用的详细信息:

http://support.microsoft.com/kb/303718

于 2012-06-06T05:44:05.720 回答
0

使用 PowerPoint 创建这样的文件,并将其作为资源嵌入到您的 C# 应用程序中。然后在需要时将其复制到文件中。

于 2012-06-06T05:41:00.860 回答