是否可以通过其他dll绘制pyqt小部件?

发布于 2024-10-27 18:48:37 字数 342 浏览 1 评论 0原文

我需要创建一个可以显示网络摄像头的程序(hikvision IR ip66), 他们给我提供了ocx和dll,以及一些API文档。

一个 API 函数是这样的(在 Windows 中):

bool playVideo( HWND handle, ...)

我的代码是这样的:

widget = QWidget()
wid = widget.winId()
dll.playVideo(int(wid))

失败了。我不知道出了什么问题,有什么想法吗?或者其他更好的方法在 pyqt 中完成这项工作? (例如,使用声子?)

I need create a program which can show web cameras (hikvision IR ip66),
they provide me with ocx and dll, and some API documents.

one API function is like this(in windows):

bool playVideo( HWND handle, ...)

and my code is like this:

widget = QWidget()
wid = widget.winId()
dll.playVideo(int(wid))

and failed. I don't know what is wrong, any ideas? or other better way to do this job in pyqt? (for example, use phonon?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

喵星人汪星人 2024-11-03 18:48:37

创建 QWidget 时,您需要传递属性:

Qt::WA_NativeWindows

QWidget(parent, Qt.WindowFlags(Qt.WA_NativeWindows))

请记住,这将使所有父窗口小部件也成为本机窗口小部件,除非您指定:

Qt::WA_DontCreateNativeAncestors

When creating the QWidget you need to pass the attribute:

Qt::WA_NativeWindows

QWidget(parent, Qt.WindowFlags(Qt.WA_NativeWindows))

Keep in mind that this will make all the parent widgets also Native unless you specify:

Qt::WA_DontCreateNativeAncestors

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