我最近尝试将 PowerPoint 文件作为 XpsDocument 嵌入到 WPF 中。
这是一个简单的 WPF 应用程序,我在其中将 DocumentViewer 属性嵌入到我的 MainWindow.xaml 网格中:
<Window x:Class="PowerPoint2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:PowerPoint2"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<DocumentViewer
Name="DocumentviewPowerPoint"
VerticalAlignment="Top"
HorizontalAlignment="Left" />
</Grid>
要创建绑定到“DocumentviewPowerPoint”的文档,我将已打开的 PowerPoint 文件转换为 Xps 格式,并将此变量绑定到前面提到的 XAML 属性:
using System;
using System.IO;
using System.Windows;
using System.Windows.Xps.Packaging;
using Microsoft.Office.Core;
using Microsoft.Office.Interop.PowerPoint;
using Application = Microsoft.Office.Interop.PowerPoint.Application;
namespace PowerPoint2
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
const string powerPointFile = @"c:\temp\ppt.pptx";
var xpsFile = Path.GetTempPath() + Guid.NewGuid() + ".pptx";
var xpsDocument = ConvertPowerPointToXps(powerPointFile, xpsFile);
DocumentviewPowerPoint.Document = xpsDocument.GetFixedDocumentSequence();
}
private static XpsDocument ConvertPowerPointToXps(string pptFilename, string xpsFilename)
{
var pptApp = new Application();
var presentation = pptApp.Presentations.Open(pptFilename, MsoTriState.msoTrue, MsoTriState.msoFalse,
MsoTriState.msoFalse);
try
{
presentation.ExportAsFixedFormat(xpsFilename, PpFixedFormatType.ppFixedFormatTypeXPS);
}
catch (Exception ex)
{
MessageBox.Show("Failed to export to XPS format: " + ex);
}
finally
{
presentation.Close();
pptApp.Quit();
}
return new XpsDocument(xpsFilename, FileAccess.Read);
}
}
}
这一切在运行程序时运行良好,显示嵌入到 WPF 中的 Xps 文档:
我的问题是如何进一步修改我的代码,以便将 PowerPoint 不仅显示为一系列可滚动的幻灯片,还显示为实际的幻灯片?我想进行进一步的更新,使用户能够在每次鼠标点击时导航到下面的幻灯片——就像一个“正确的”演示文稿。我的问题是我不熟悉 XpsDocument API 的用法 - 我不知道是否是使用这些来实现我想要的,或者它是在转换为 Xps 格式的演示变量的设置属性中.