如何在MVVM模式中动态添加UserControl?

时间:2017-12-22 05:52:00

标签: wpf mvvm-light

这是帮助解释我的解释的示例来源

<ItemsControl ItemsSource="{Binding PaggingButtonList}">            
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <UserControl Name="{Binding ViewName}" />
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

我想在上面的代码中动态添加。不幸的是,添加我知道的视图的唯一方法是。所以我想知道要分配什么?用于动态查找和添加项目的View文件的部分。谢谢

enter image description here

1 个答案:

答案 0 :(得分:6)

您可以使用ContentControl来托管UserControl

 <ItemsControl ItemsSource="{Binding ViewList}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <ContentControl Content="{Binding Name,Converter={StaticResource NameToContentConverter}}"/>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>

定义ObservableCollection:

public ObservableCollection<object> ViewList { get; set; } = 
  new ObservableCollection<object>();

并稍后添加内容

ViewList.Add(new View() { Name = "yourUserControlName" });

您的View班级:

public class View
{
    public string Name { get; set; } = "";
}

由于ContentControl.Content需要对象,并且您将其作为string传递 你可以使用转换器。

<强>转换器:

public class NameToContentConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if(value != null)
        {
            Type userControl =  Type.GetType(System.Reflection.Assembly.GetExecutingAssembly().GetName().Name +"."+ value,null,null);
            return Activator.CreateInstance(userControl);
        }
        return "";
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

了解有关Activator的更多信息,请参阅here

<强> Output: