我正在尝试使用 MVVM 将 Windows 窗体控件绑定到 WPF 中的面板。我的总体目标是能够动态更改我将使用的特定 Windows 窗体控件,因为我计划有几个可用的控件。
现在,我已经能够通过让应用程序在初始化时启动回调来实现此功能,该回调按名称访问网格对象。以下是 XAML 当前的外观:
<Grid Name="WindowsControlObject"></Grid>
回调如下所示:
private void WindowLoaded(object sender, RoutedEventArgs e)
{
System.Windows.Forms.Integration.WindowsFormsHost host =
new System.Windows.Forms.Integration.WindowsFormsHost();
System.Windows.Forms.Control activeXControl = new SomeWindowsControl();
host.Child = activeXControl;
this.WindowsControlObject.Children.Add(host);
}
虽然这可行,但我正在尝试充分利用 MVVM 模式,因此有一种方法可以在 XAML/ModelView 中执行以下操作:
XAML:
<Grid Content="{Binding WindowsControl"></Grid>
在我的模型视图中:
public class MyModelView
{
public Grid WindowsControl;
public MyModelView{
WindowsControl = new Grid;
System.Windows.Forms.Integration.WindowsFormsHost host =
new System.Windows.Forms.Integration.WindowsFormsHost();
System.Windows.Forms.Control activeXControl = new SomeWindowsControl();
host.Child = activeXControl;
WindowsControl.WindowsControlObject.Children.Add(host);
}
}
我的探索/可能的方法是否正确?我突然想到我可能需要使用其他类型的面板(网格除外),但还没有发现任何明显的东西。如果做不到,我有一个解决方案,只是不是很干净。