可以尝试在VSTO Excel插件项目中添加一个对Power Query的引用,并更改Excel的Trust Center设置。
在Visual Studio中打开VSTO Excel插件项目。
右键单击项目,选择“添加引用”。
在“COM”选项卡下,选择“Microsoft Power Query for Excel”并单击“确定”。
在“解决方案资源管理器”中,右键单击项目并选择“属性”。
在“应用程序”选项卡中,将“目标框架”设置为“.NET Framework 4”。
更改Excel的Trust Center设置。打开Excel并选择“文件”> “选项”> “信任中心”> “信任中心设置”> “宏设置”。选择“启用所有宏”并选择“对于数字签名是不受限制的可信源”,然后单击“确定”。
示例代码:
using Microsoft.Office.Tools.Excel; using Microsoft.Office.Interop.Excel; using Microsoft.PowerQuery.Runtime; using Excel = Microsoft.Office.Interop.Excel; using Microsoft.Office.Core; using System.Runtime.InteropServices;
namespace VSTOAddIn { public partial class ThisAddIn { private void ThisAddIn_Startup(object sender, System.EventArgs e) { Globals.ThisAddIn.Application.WorkbookOpen += Application_WorkbookOpen; }
private void Application_WorkbookOpen(Excel.Workbook Wb)
{
PowerQueryPrelude.Initialize();
}
protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
{
return new Ribbon1();
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
#region VSTO 生成的代码
///
/// 设计器支持所需的方法 - 不要使用代码编辑器修改此方法的内容。
///
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);