当word文档在c#中关闭时,有没有办法运行代码?例如,我想在桌面上关闭word文档时显示一个消息框。
答案 0 :(得分:0)
您可以使用Marshal.GetActiveObject
Application word = (Application)Marshal.GetActiveObject("Word.Application");
if(word == null)
{
Console.Write("Your word is not started");
}
Msdn:http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.getactiveobject.aspx