我有一个正在开发的程序,它允许用户使用文件浏览器选择文件。选择文件后,我希望表单上的预览面板显示所选文件的预览图像。该文件将始终是 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;
}
我想在此表单中添加一个预览窗格,以便在选择文件后,它将显示文件的图形预览。