WPF中的ActiveX控件

时间:2012-08-16 06:29:27

标签: wpf interop activex

我正在使用第三方SDK在我的WPF应用程序中显示视频。 这需要我向UI添加一个控件,该控件是UI的一部分,以便显示视频。我使用windows窗体主机

将控件添加到我的WPF中
 ImageViewerControl _imageViewerControl = ClientControl.Instance.GenerateImageViewerControl();
 WindowsFormsHost host = new WindowsFormsHost();
 host.Child = _imageViewerControl;
 grid1.Children.Add(host);

当我检查grid1.children.count时它是1,_imageViewerControl也不是null。但我没有在UI上看到任何内容。

但是当我使用WindowsForm时,一切正常。我应该寻找什么?

0 个答案:

没有答案