本文为大家分享了WinForm预览Office文档的方法,供大家参考,具体内容如下
使用WinForm, WPF, Office组件
原理:使用Office COM组件将Word,Excel转换为XPS文档, 将WPF的DocumentViewer控件寄宿到WinForm中, 实现预览.
1. 新建WinForm项目
2. 新建WPF用户控件, 注意是WPF控件
3. 编辑WPF用户控件
<UserControl ... ...> <Grid> <DocumentViewer x:Name="documentViewer"/> </Grid> </UserControl>
VS设计预览显示效果如下:
如果不需要自带的工具栏, 可以添加以下资源隐藏工具栏:
<!--隐藏DocumentViewer边框--> <UserControl.Resources> <Style x:Key="{x:Type DocumentViewer}" TargetType="{x:Type DocumentViewer}"> <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}" /> <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" /> <Setter Property="FocusVisualStyle" Value="{x:Null}" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type DocumentViewer}"> <Border BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" Focusable="False"> <Grid KeyboardNavigation.TabNavigation="Local"> <Grid.Background> <SolidColorBrush Color="{DynamicResource ControlLightColor}" /> </Grid.Background> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <ScrollViewer Grid.Row="1" CanContentScroll="true" HorizontalScrollBarVisibility="Auto" x:Name="PART_ContentHost" IsTabStop="true"> <ScrollViewer.Background> <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="{DynamicResource ControlLightColor}" Offset="0" /> <GradientStop Color="{DynamicResource ControlMediumColor}" Offset="1" /> </LinearGradientBrush> </ScrollViewer.Background> </ScrollViewer> </Grid> </Border> </ControlTemplate> </Setter.Value> </Setter> </Style> </UserControl.Resources>
4. 新建WinForm用户控件
在WinForm上添加ElementHost
将WPF用户控件添加到ElementHost上,设计器代码XpsPreviewer.Designer.cs如下
//ElementHost private System.Windows.Forms.Integration.ElementHost elementHost1; //XpsPreviewer变量 private WPF.XpsPreviewer xpsPreviewer1; private void InitializeComponent() { this.elementHost1 = new System.Windows.Forms.Integration.ElementHost(); this.xpsPreviewer1 = new WPF.XpsPreviewer(); //初始化 //其他属性初始化... this.elementHost1.Child = this.xpsPreviewer1; //其他属性初始化... }
在XpsPreviewer.cs后台代码中定义方法:
/// <summary> /// 加载XPS文件 /// </summary> /// <param name="fileName">XPS文件名</param> internal void LoadXps(string fileName) { var xpsDocument = new XpsDocument(fileName, FileAccess.Read); this.xpsPreviewer1.documentViewer.Document = xpsDocument.GetFixedDocumentSequence(); xpsDocument.Close(); }
5. 将Excel(Word类似)转换为XPS文件
通过Nuget包管理控制台安装COM组件:
PM> Install-Package Microsoft.Office.Interop.Excel
转换为XPS:
/// <summary> /// 将Excel文件转换为XPS文件 /// </summary> /// <param name="execelFileName">Excel文件名</param> /// <param name="xpsFileName">转换的xps文件名</param> public void ConvertExcelToXps(string excelFileName, string xpsFileName) { if (string.IsNullOrWhiteSpace(excelFileName)) throw new ArgumentNullException(excelFileName); if (string.IsNullOrWhiteSpace(xpsFileName)) throw new ArgumentNullException(xpsFileName); var fileInfo = new FileInfo(xpsFileName); if (!fileInfo.Directory.Exists) fileInfo.Directory.Create(); //删除已存在的文件 if (File.Exists(xpsFileName)) File.Delete(xpsFileName); Excel.Application app = new Excel.Application(); app.DisplayAlerts = false; Excel.Workbooks wbs; Excel.Workbook wb; wbs = app.Workbooks; wb = wbs.Add(excelFileName); dynamic Nothing = System.Reflection.Missing.Value; wb.ExportAsFixedFormat(Excel.XlFixedFormatType.xlTypeXPS, xpsFileName, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing); wb.Close(true); wbs.Close(); app.Quit(); KillExcelProcess(app); }
扩展: 每次调用Excel打开文件,均会产生一个进程, 在网络上收集的释放Excel进程方式均不起作用. 因此选择直接结束进程, 根据Excel句柄结束进程, 而不是根据进程名称杀死全部正在运行的Excel.
[DllImport("User32.dll")] private static extern int GetWindowThreadProcessId(IntPtr hWnd, out int ProcessId); /// <summary> /// 结束Excel进程 /// </summary> /// <param name="obj"></param> private void KillExcelProcess(Excel.Application app) { if (app == null) return; try { IntPtr intptr = new IntPtr(app.Hwnd); int id; GetWindowThreadProcessId(intptr, out id); var p = Process.GetProcessById(id); p.Kill(); } catch { } }
现在已经可以正常的预览Excel文件了. 由于Excel另存为XPS文件会耗费一定的时间, 因此建议在后台线程中提前异步生成, 在预览时可直接调取XPS文件.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
Seafile 专业版服务器支持在线预览 office 文件,配置方法如下。 安装 Libreoffice/UNO Office 预览依赖于 Libreoffice 4.1+ 和 Python-uno 库。 Ubuntu/Debian: sudo apt-get install libreoffice libreoffice-script-provider-python poppler-utils
在Seafile专业版 4.4.0(或更高版本)中,可以使用 Microsoft Office Online Server (以前命名为Office Web Apps)在线预览文档。 Office Online Server 为所有的 Office 文档提供最佳预览。它还支持直接在web浏览器中协作编辑Office文件。对于拥有 Microsoft Office 批量许可证的组织,可以免费使用Of
您如何访问旧 API? 在我的azure帐户中,我有Office 365统一API(预览版),我希望使用旧的API,因为它处于预览版,文档不完整,运行缓慢。 但是,在我的azure帐户中,我只有Office 365统一API(预览版)、Office 365管理API
本文向大家介绍.NET实现在网页中预览Office文件的3个方法,包括了.NET实现在网页中预览Office文件的3个方法的使用技巧和注意事项,需要的朋友参考一下 近日公司要搞一个日常的文档管理的东东,可以上传、下载各种文件,如果是office文件呢还必须得支持预览功能,其他的都好说但是唯独office预览功能比较麻烦,但是不能不做,废话不多说了一步步来吧。分析了下网易邮箱的文件预览功能,他用的是
我有上传文档按钮,从那里我可以上传图像,文档,pdf文件和EXCEL。我想显示这些选定文件的预览。 我能够显示预览的图像和PDF文件,但不知道如何显示预览,如果文件是文档或excel文件。 下面是显示文件预览的通用代码。 超文本标记语言代码是: JS代码是: 如果选择的文件是PDF和/或图像,但不适用于doc或excel文件,则此代码可以正常工作。任何想法如何显示文档和excel文件的预览?
我需要能够预览EML文件在一个基于Angular/.NET核心API构建的web应用程序。我在这里找到了microsoft提供的仅预览Word、Excel或PowerPoint文档的服务。我可以在web应用程序中嵌入这个页面并预览这些文件类型。但是,此服务不支持EML文件。 还有一个通过encryptomatic提供的在线预览EML文件的服务。但它们没有可以嵌入到应用程序中的东西。 Google