如何在创建的 excel 文件中使用资源中的图像作为页脚?
这肯定行不通:
xlWorkSheet.PageSetup.CenterFooterPicture = Properties.Resources.stopka;
因为:无法将类型“System.Drawing.Bitmap”隐式转换为 Microsoft.Office.Interop.Excel.Graphic'
好的,这有效:
xlWorkSheet.PageSetup.CenterFooterPicture.Filename = Application.StartupPath + "\\stopka.png";
xlWorkSheet.PageSetup.CenterFooterPicture.LockAspectRatio = Microsoft.Office.Core.MsoTriState.msoTrue;
xlWorkSheet.PageSetup.CenterFooterPicture.Width = 590;
xlWorkSheet.PageSetup.CenterFooter = "&G";
但这不是我需要的。我想从项目资源而不是从应用程序文件夹中获取图像。