给定一个 WPF Image 控件,是否可以确定其 HWND?

发布于 2024-12-03 07:12:28 字数 175 浏览 1 评论 0 原文

我正在 WPF 应用程序中集成网络摄像头。当我将相机的句柄传递给 DirectShow 函数时,我可以在主窗口中看到相机的输入。但这不是我想要的。

主窗体有一个图像控件,我想在其中查看输出。但是,为了做到这一点,我需要控件的句柄。

关于如何执行此操作有任何提示吗?

提前致谢, 吉安卢卡.

I am integrating a webcam in a WPF application. I can see the camera feed in the main window, as I pass its HANDLE on to the DirectShow functions. But this is not what I want.

The main form has a Image control, where I'd like to see the output. However, in order to do this, I need the control's Handle.

Any hint on how to do this?

Thanks in advance,
Gianluca.

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

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

发布评论

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

评论(2

ˉ厌 2024-12-10 07:12:28

WPF 中的图像控件,与 Windows 窗体不同,实际上没有 HWND。

WPF 的工作方式与 Windows 窗体不同 - 每个控件不是带有句柄的本机“窗口”的包装器,而是由布局系统在运行时使用 Direct3D 组合在一起。

如果您需要实际托管 WPF 窗口内网络摄像头的输出,您应该考虑使用 HwndHost (或子类)。最简单的方法通常是在 WindowsFormsHost,尽管通过 HwndHost 自行管理 HWND 效率更高。

An Image Control in WPF, unlike Windows Forms, doesn't actually have an HWND.

WPF works differently than Windows Forms - each control is not a wrapper around a native "window" with a handle, but rather composed together using Direct3D at runtime by the layout system.

If you need to actually host output from a Webcam inside of a WPF window, you should look at using HwndHost (or a subclass). The simplest way is often to just host a Windows Forms control inside of a WindowsFormsHost, though managing an HWND yourself via HwndHost is more efficient.

像极了他 2024-12-10 07:12:28

使用 WindowsFormsHost 和内部的图片框是一个很好的解决方案,我用它来解决类似的问题,我需要一个句柄来显示视频流。但要小心,为了工作,承载 WindowsFormsHost 控件的窗口必须具有AllowsTransparency =“false”!

Using an WindowsFormsHost and a picture box inside is a good solution that I used for a similar problem where I needed a handle to display a video stream. But be careful, in order to work, the Window that is hosting the WindowsFormsHost control must have AllowsTransparency="false"!

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