我想将应用程序作为一个单词加载项,在打开文件时更改文件。
所以我在 Visual Studio 中创建了一个 word 插件项目,这基本上是我拥有的代码:
namespace WordAddIn1
{
public partial class ThisAddIn
{
private void Application_DocumentOpen(Microsoft.Office.Interop.Word.Document Doc)
{
MessageBox.Show("doc opened");
// do my stuff
}
#region VSTO generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InternalStartup()
{
this.Application.DocumentOpen += new Word.ApplicationEvents4_DocumentOpenEventHandler(Application_DocumentOpen);
}
#endregion
}
}
问题是,如果您启动一个空的 word 应用程序(双击 word.exe),然后打开一个文档,这很有效,但如果 word 应用程序与文档打开一起启动(双击一个 .doc 文件),则不会。