使用 COM 自动化服务器和 PyQt
我想在 PYTHON 中创建一个具有图形界面(使用 pyqt)和 COM 自动化服务器的应用程序。
这样 COM 客户端就可以使用 COM 调用此应用程序,这将导致主 gui 窗口中发生事件。但我不确定如何将 pyqt (信号/插槽)集成到 COM 自动化服务器(使用 pywin)。
I want to create an application in PYTHON with graphical interface (using pyqt), with a COM automation server.
So that COM clients could call this app using COM, and this would result in events in the main gui window. But I'm not sure how to integrate pyqt (signals/slots) to COM automation server (using pywin).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的软件由三个不同的部分构建:
让 COM 客户端做它的事情。输出可以做一些事情并更新 GUI 界面。
我的意思是,这两个接口彼此之间没有任何关系。
Your software is built from three different parts:
Let the COM client do its thing. The output can be doing stuff and updating the GUI interface.
What I am saying is that the two interfaces have nothing to do thin each other.