Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在基于浏览器的应用程序和基于 .Net 的桌面应用程序之间进行通信。我可以使用 ActiveX 作为沟通的桥梁吗?我创建了一个 ActiveX 控件,我可以从浏览器访问它。如何从桌面应用程序访问同一个 ActiveX 实例?谢谢!
您希望 .NET 应用程序作为独立的 EXE 启动并获取对浏览器中托管的 ActiveX 对象的引用?我认为浏览器不会公开对它们托管的 ActiveX 控件的访问(更不用说可以有多个浏览器实例,因此也可以有多个 ActiveX 控件实例)。
您可以将 .NET 应用程序转换为 DLL,由 ActiveX 控件加载。