1

我有一个正在开发的程序,它允许用户使用文件浏览器选择文件。选择文件后,我希望表单上的预览面板显示所选文件的预览图像。该文件将始终是 Microsoft Word 文档。有没有人有一个例子或知道一个解释如何做到这一点的网站?非常感谢!

编辑:这是我的代码,到目前为止:

private void button1_Click(object sender, EventArgs e)
    {
        // Create an instance of the Open File Dialog Box
        var openFileDialog1 = new OpenFileDialog();

        // Set filter options and filter index
        openFileDialog1.Filter = "Word Documents (.docx)|*.docx|All files (*.*)|*.*";
        openFileDialog1.FilterIndex = 1;
        openFileDialog1.Multiselect = false;

        // Call the ShowDialog method to show the dialog box.
        openFileDialog1.ShowDialog();
        txtDocument.Text = openFileDialog1.FileName;

    }

我想在此表单中添加一个预览窗格,以便在选择文件后,它将显示文件的图形预览。

在此处输入图像描述

4

1 回答 1

3

您应该阅读使用我们的托管预览处理程序框架以您的方式查看数据,以了解如何显示文件的预览。

在博客中更新了这篇文章的链接:

博客 - 使用我们的托管预览处理程序框架以您的方式查看数据

于 2013-07-22T19:52:35.480 回答