将ContentControl绑定到ViewModel,并在与关联的视图中保留该VM
本文关键字:视图 关联 保留 VM 绑定 ContentControl ViewModel | 更新日期: 2023-09-27 17:57:26
我正在创建一个WP8应用程序,将contentcontrol绑定到ViewModel。此ContentControl获取在App.xaml.cs中为该VM指定的DataTemplate,并绑定到该ContentControl模板。但问题是,我无法在我的视图中获得该VM的实例。如何将VM实例获取或传递到绑定到内容控件的View。代码在这里?
问题是,当DyncmicContentControl获取ViewModel时,它会调用GetTemplate()方法从App.xaml.cs获取相应的DataTemplate,这会创建该视图的新实例,但我无法将此ViewModel传递给该视图。我怎样才能做到这一点??
ContentControl.cs
public class DynamicContentControl : ContentControl
{
/// <summary>
/// Called when the value of the <see cref="P:System.Windows.Controls.ContentControl.Content" /> property changes.
/// </summary>
/// <param name="oldContent">The old value of the <see cref="P:System.Windows.Controls.ContentControl.Content" /> property.</param>
/// <param name="newContent">The new value of the <see cref="P:System.Windows.Controls.ContentControl.Content" /> property.</param>
protected override void OnContentChanged(object oldContent, object newContent)
{
if (newContent != null)
{
base.OnContentChanged(oldContent, newContent);
this.ContentTemplate = DataTemplateSelector.GetTemplate(newContent);
}
}
}
数据模板选择器.cs
/// <summary>
/// Gets the template.
/// </summary>
/// <param name="param">The parameter.</param>
/// <returns></returns>
public static DataTemplate GetTemplate(object param)
{
Type t = param.GetType();
DataTemplate templateData = App.Current.Resources[t.Name] as DataTemplate;
return templateData;
}
主页.xaml
<Controls:DynamicContentControl Content="{Binding UsrCntrlDynamic}" />
MainPageViewModel.cs
public static ObservableCollection<object> ContentControlItems;
public MainPageViewModel()
{
ContentControlItems = new ObservableCollection<object>();
ContentControlItems.Add(new UserControlViewModel());
}
应用程序xaml
<DataTemplate x:Key="UserControlViewModel">
<vm:UserControlView />
</DataTemplate>
在ContentControl
的ContentTemplate
属性上设置的DataTemplate
将应用于在该ContentControl
的Content
属性中设置的对象。因此,在这种情况下,设置ContentTemplate
应该使用绑定到的UsrCntrlDynamic
属性中的任何内容来呈现DataTemplate
。这假设ContentControl
的ControlTemplate
设置正确,包括用于接收和呈现Content
的ContentPresenter
,而自定义DynamicContentControl
可能不是这样。