我有一个遗留应用程序,它是WPF和Windows Forms的混合体。基本上,通过在Windows窗体上添加ElementHost,将WPF应用程序加载到Windows窗体应用程序上。然后,此WPF应用程序将WPF用户控件加载到其上。嵌入在此WPF用户控件中的是一个传统的Windows控件(自定义浏览器控件),最终派生自System.Windows.Forms
有没有办法从代码中动态获取此控件的句柄?我们不知道控件在渲染时会给出的名称。我们所知道的是控件的基本类型,正如我所提到的那样派生自System.WIndows.Forms。
到目前为止,我所看到的所有示例都讨论了如何动态发现最终是DependencyObject的子代。我还没有看到一个例子,它解释了如何在WPF应用程序中以编程方式发现旧学校Windows窗体控件。
答案 0 :(得分:0)
为了在WPF控件中托管Winforms控件,必须使用WindowsFormsHost
。 WindowsFormsHost
从DependencyObject
派生。
您必须在WPF应用中找到WindowsFormsHost
元素,然后您才能访问包含Child
控件的WebBrowser
属性。
伪代码:
var controlYoureLookingFOr = GiveMeAllChildren(WPFApp)
.OfType<WindowsFormsHost>
.First();
var browser = (WebBrowser.Or.Something)controlYoureLookingFOr.Child;
答案 1 :(得分:0)
在这里完成答案的是我添加的递归部分,以确保遍历整个窗口或父控件及其所有后代
public static IEnumerable<T> FindAllChildrenByType<T>(this System.Windows.Forms.Control control)
{
IEnumerable<System.Windows.Forms.Control> controls = control.Controls.Cast<System.Windows.Forms.Control>();
return controls
.OfType<T>()
.Concat<T>(controls.SelectMany<System.Windows.Forms.Control, T>(ctrl => FindAllChildrenByType<T>(ctrl)));
}
public static IEnumerable<T> FindVisualChildren<T>(this DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
yield return (T)child;
}
foreach (T childOfChild in FindVisualChildren<T>(child))
{
yield return childOfChild;
}
}
}
}
然后您可以将其用作
var windowsFormHost = parentControl.FindVisualChildren<WindowsFormsHost>();
foreach (var item in windowsFormHost)
{
var htmlcontrols = item.Child.FindAllChildrenByType<{sometypehere}
foreach (var control in htmlcontrols)
{
}
}