gpt4 book ai didi

c# - 在 C# 中保存为事件

转载 作者:行者123 更新时间:2023-12-02 01:15:44 26 4
gpt4 key购买 nike

我使用 VSTO(C#) 为 excel 开发了一个插件。

我想知道工作簿在运行时何时“SAVED AS”。 IE。用户正在 WBK 1 上执行一些操作,然后他使用另存为保存工作簿,然后重命名工作簿并再次开始处理它。那么在这种情况下是否可以捕获“Worlbook SAve AS”事件?

最佳答案

Application.WorkbookAfterSave 事件传入一个名为 wb 的 WorkBook 对象和一个名为 Success 的 bool 值。

您可以从 Workbook 对象的 FullName 属性中获取另存为文件名。也许您可以将初始名称存储在变量中,并在 AfterSave 事件中比较名称和位置以查看是否已像这样使用“另存为”:

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

namespace ExcelAddIn1
{
public partial class ThisAddIn
{
private string CurrentFullName { get; set; }
private event EventHandler SaveAs;

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
CurrentFullName = this.Application.ThisWorkbook.FullName;

this.Application.WorkbookAfterSave += new Excel.AppEvents_WorkbookAfterSaveEventHandler(Application_WorkbookAfterSave);

SaveAs += new EventHandler(ThisAddIn_SaveAs);
}

void ThisAddIn_SaveAs(object sender, EventArgs e)
{
//Do What I want to do if saved as
}

void Application_WorkbookAfterSave(Excel.Workbook Wb, bool Success)
{
if (Wb.FullName != CurrentFullName)
{
CurrentFullName = Wb.FullName;
SaveAs.Invoke(null, null);
}
}

private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
}
}

关于c# - 在 C# 中保存为事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11611479/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com