0

我正在编写代码以使用 C# 4.0 中的动态类型访问 MS Word 自动化 COM 接口。它工作得很好,而且很容易使用。

我不知道如何订阅事件。我想订阅Application::Quit事件。

这是我写的代码:

static class Program
{
    [STAThread]
    static void Main()
    {
        Type wordType = Type.GetTypeFromProgID("Word.Application");
        dynamic word = Activator.CreateInstance(wordType);

        var myDoc = word.Documents.Open(@"C:\example.docx");
        word.Visible = true;

        //how can I subscribe to the word.Quit event??
    }
4

1 回答 1

1

这应该有效:

((Microsoft.Office.Interop.Word.ApplicationEvents4_Event)word).Quit += OnQuit;

...接着...

private void OnQuit()
{
     MessageBox.Show("Quit");
}
于 2012-06-28T10:51:50.623 回答