其实想实现 把excel里的统计图取出来显示到winform界面中,但是不知怎样做。后来通过用webBrowser控件加载excel然后显示。               string strFileName = @"c:\test.xlsx";            //string strFileName = @"hao123.com";
            Object refmissing = System.Reflection.Missing.Value;            webBrowser1.Navigate(strFileName, false);但是运行时总是提示 打开、保存、取消 对话框,点击打开后就启动了excel窗体,
 ,
请问该如何实现直接取excel里的统计图?或者把excel文件嵌入到webBrowser控件?。