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

问题描述 投票:3回答:1

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

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

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

enter image description here

wpf mvvm-light
1个回答
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传递,因此您可以使用Converter。

转换器:

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:

© www.soinside.com 2019 - 2024. All rights reserved.