c# 使用事件处理程序WorkbookOpen

发布于 2024-12-01 06:13:36 字数 158 浏览 2 评论 0原文

我正在编写一个 Excel 加载项,我想在打开工作簿时执行某些代码。这意味着,如果他们打开 Excel,然后打开工作簿,加载项将执行代码。

我假设我们必须使用事件处理程序: Application.WokbookOpen

但我不知道如何应用它。

谢谢你!

I am programming an excel add-in and I want to execute certain code when a workbook is opened. This means that if they open excel and then open a workbook, the add-in will execute the code.

I am assuming we have to use the event handler:
Application.WokbookOpen

But I do not know how to apply this.

Thank You!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笙痞 2024-12-08 06:13:36

将其添加到 InternalStartUp()

    this.Application.WorkbookOpen += new Excel.AppEvents_WorkbookOpenEventHandler(Application_WorkbookOpen);

,然后打开工作簿时将调用该函数。

void Application_WorkbookOpen(Excel.Workbook Wb)
{
   //Do something         
}

此外,它隐藏在 ThisAddIn 中的 #region VSTO 生成代码 中。默认情况下为.cs

Add this to InternalStartUp()

    this.Application.WorkbookOpen += new Excel.AppEvents_WorkbookOpenEventHandler(Application_WorkbookOpen);

And then this function will be called when the workbook is opened

void Application_WorkbookOpen(Excel.Workbook Wb)
{
   //Do something         
}

Also, it is hidden in the #region VSTO generated code in ThisAddIn.cs by default.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文