62

我正在尝试将照片添加到 Excel 电子表格但不断收到以下错误?

错误 1 ​​无法嵌入互操作类型“Microsoft.Office.Interop.Excel.ApplicationClass”。请改用适用的接口。

应用程序类();在下面的代码行中用红色下划线:

xlApp = new Excel.ApplicationClass();

有人可以请告诉我我该如何解决这个问题吗?

using Excel = Microsoft.Office.Interop.Excel;
using Microsoft.Office.Core;

private void btnWriteSpreedSheet_Click(object sender, EventArgs e)
        {
            Excel.Application xlApp;
            Excel.Workbook xlWorkBook;
            Excel.Worksheet xlWorkSheet;
            object misValue = System.Reflection.Missing.Value;

            xlApp = new Excel.ApplicationClass(); //This is where the problem is??????
            xlWorkBook = xlApp.Workbooks.Add(misValue);
            xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);

            //add some text 
            xlWorkSheet.Cells[1, 1] = "http://csharp.net-informations.com";
            xlWorkSheet.Cells[2, 1] = "Adding picture in Excel File";

            xlWorkSheet.Shapes.AddPicture("C:\\csharp-xl-picture.JPG", Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoCTrue, 50, 50, 300, 45);

              xlWorkBook.SaveAs("csharp.net-informations.xls", Excel.XlFileFormat.xlWorkbookNormal, misValue, misValue, misValue, misValue, Excel.XlSaveAsAccessMode.xlExclusive, misValue, misValue, misValue, misValue, misValue);
            xlWorkBook.Close(true, misValue, misValue);
            xlApp.Quit();

            releaseObject(xlApp);
            releaseObject(xlWorkBook);
            releaseObject(xlWorkSheet);

            MessageBox.Show ("File created !");
        }

        private void releaseObject(object obj)
        {
            try
            {
                System.Runtime.InteropServices.Marshal.ReleaseComObject(obj);
                obj = null;
            }
            catch (Exception ex)
            {
                obj = null;
                MessageBox.Show("Unable to release the Object " + ex.ToString());
            }
            finally
            {
                GC.Collect();
            }
        } 

    }
4

3 回答 3

209

在您的项目中,展开“参考”,找到 Microsoft Office 互操作参考。右键单击它并选择属性,然后将“嵌入互操作类型”更改为false.

于 2012-07-27T13:32:28.090 回答
71

正如MSDN 博客文章中所解释的那样,除了禁用“嵌入互操作类型”之外,您还可以更改

xlApp = new Excel.ApplicationClass();

进入

xlApp = new Excel.Application();

虽然Excel.Application是一个接口,但我们可以实例化它,因为它装饰有 CoClass 属性,如其他 SO 答案中所述:https ://stackoverflow.com/a/11039870/501196

使用这种方法 (Embed Interop Types = true) 的优点是您将需要在项目中部署更少的文件,并且嵌入式类型将仅包含您的应用程序实际使用的方法和类型。当您使用外部互操作程序集时,您将在那里导入引用库公开的所有类型和方法。

于 2013-05-13T15:33:27.437 回答
-2

找到 Microsoft.Office.Interop.Excel Reference 并右键单击并更改“Embed Interop Types”状态如果它是真的。

于 2014-06-25T08:13:38.700 回答