0

我最近尝试将 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>

要创建绑定到“Doc​​umentviewPowerPoint”的文档,我将已打开的 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 格式的演示变量的设置属性中.

4

1 回答 1

0

我设法解决了我感兴趣的特定问题。

有关详细说明,请参阅此博客文章:

使用 MVVM 控制 DocumentViewer 方法和属性

该解决方案通过调用相关的方法组合,解决了能够使单个 PowerPoint 幻灯片(转换为 xps 文件格式)占据整个可用窗口空间的问题DocumentViewer

在按下屏幕按钮调用 RelayCommand 时,观察到 MainWindowViewModel.cs 类中的以下 DocumentViewer API 调用组合起作用:

public ICommand Command
  {
     get
     {
        return _command ?? (_command = new RelayCommand(
            x =>
            {
               DocumentViewer = MainWindow.GetInstance();

               const string powerPointFile = @"c:\temp\ppt.pptx";
               var xpsFile = Path.GetTempPath() + Guid.NewGuid() + ".xps";
               var xpsDocument = ConvertPowerPointToXps(powerPointFile, xpsFile);

               FixedFixedDocumentSequence = xpsDocument.GetFixedDocumentSequence();
               DocumentViewer.Document = FixedFixedDocumentSequence;

               DocumentViewer.GoToPage(1);
               DocumentViewer.FitToMaxPagesAcross(1);
               WindowState = WindowState.Maximized;
               DocumentViewer.FitToMaxPagesAcross(1);
            }));
     }
  }

并获取DocumentViewer实例本身?我还需要更新 MainWindow.xaml.cs 以使其返回 DocumentViewer 对象的实例:

using System.Windows.Controls;

命名空间 DocumentView { 公共部分类 MainWindow { 私有静态 DocumentViewer _docViewer;

  public MainWindow()
  {
     InitializeComponent();
     _docViewer = DocumentViewPowerPoint;
  }

  public static DocumentViewer GetInstance()
  {
     return _docViewer;
  }

} }

DocumentViewPowerPointMainWindow.xaml 中 DocumentViewer 的名称在哪里:

<Window x:Class="DocumentView.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:DocumentView"
    mc:Ignorable="d"
    WindowState="{Binding WindowState, Mode=TwoWay}"
    Title="MainWindow" Height="350" Width="525">

<Window.DataContext>
    <local:MainWindowViewModel />
</Window.DataContext>

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="*" />
        <RowDefinition Height="50" />
    </Grid.RowDefinitions>

    <DocumentViewer 
        Grid.Row="0"
        Document="{Binding FixedFixedDocumentSequence}"
        Name="DocumentViewPowerPoint"
        VerticalAlignment="Top"
        HorizontalAlignment="Left" />

    <Button
        Grid.Row="1"
        Command="{Binding Command}"
        Width="70" Height="30" Content="Press" />
</Grid>    

于 2017-01-10T10:26:20.823 回答