我在Silverlight中找到了类AutomationFactory,当您想使用COM对象订阅事件时,该类真的很有用:

AutomationEvent quitEvent = AutomationFactory.GetEvent(word,"Quit");
quitEvent.EventRaised += new EventHandler<AutomationEventArgs>(quitEvent_EventRaised);



您知道.NET可以使用任何类似的类吗?
您知道使用自动化绑定事件的方法吗?


提前致谢。

最佳答案

我非常确定有一个,因此经过一番搜索,我找到了.Net 4.0的列表,其中包括System.Windows.Automation;。 IIRC应该是Silverlight的AutomationFactory的基础。 System.Windows.Automation

07-27 22:53