使用 COM 自动化服务器和 PyQt

发布于 2024-12-07 18:07:23 字数 157 浏览 0 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七禾 2024-12-14 18:07:23

您的软件由三个不同的部分构建:

  1. 程序核心 - 实际执行操作的部分。
  2. GUI - 在本例中是内置于 pyqt 中的。
  3. COM 服务器 - 又一个与 2 无关的 UI。

让 COM 客户端做它的事情。输出可以做一些事情并更新 GUI 界面。

我的意思是,这两个接口彼此之间没有任何关系。

Your software is built from three different parts:

  1. The program core - what actually does the stuff.
  2. The GUI - in this case built in pyqt.
  3. The COM server - one more UI that has nothing to do with 2.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文