我在 Silverlight 中找到了AutomationFactory类,当您想使用 COM 对象订阅事件时,它非常有用:
AutomationEvent quitEvent = AutomationFactory.GetEvent(word,"Quit");
quitEvent.EventRaised += new EventHandler<AutomationEventArgs>(quitEvent_EventRaised);
- 你知道任何可以从.NET中使用的类似类吗?
- 您知道使用自动化绑定事件的方法吗?
提前致谢。