0

我一直在引用https://bitbucket.org/xilium/xilium.cefglue/downloads上的 CEFGlue 示例中的“CefGlue.Samples.WpfOsr”,并尝试将其集成到插件程序集中。无论我做什么,当作为插件运行时,浏览器控件都不会在视图中呈现。但是,当以独立模式运行时,这可以正常工作。有人可以建议如何去做吗?

4

1 回答 1

0

所以我找到了控件没有出现的根本原因。CEFGlue 代码库中的某处是以下行,这使得它一直遍历可视化树以查找类型“Window”,以便获取其父窗口句柄并呈现 CEFBrowser 控件的 UI。

Window parentWnd = FindParentOfType<Window>(this);

private static T FindParentOfType<T>(DependencyObject obj) where T : DependencyObject
        {
            DependencyObject parentObj = VisualTreeHelper.GetParent(obj);
            if (parentObj == null)
                return null;

            // Try to type cast the parent to the desired type.
            // If the cast succeeds, we've found the desired parent.
            T parent = parentObj as T;
            if (parent != null)
                return parent;

            // If we get here, the current parent wasn't of the right type, so keep looking recursively
            return FindParentOfType<T>(parentObj);
        }

可能是因为我有的插件环境,这个可视化树没有那种父Window,导致空句柄。所以我的解决方案是找到父进程的主窗口句柄并将其交给CEF。希望它可以帮助一些有类似情况的人。

于 2016-08-19T09:09:34.133 回答