在ItemsControl上设计时间ItemsSource

Chr*_*sco 8 c# wpf datatemplate

我正在尝试DataTemplate为我设计ItemsControl,我需要一些模拟数据来填充模板.我阅读使用d:DataContext已足够,所以我不必创建一个模拟类.我怎样才能做到这一点?

hel*_*elb 10

必须在XAML中声明必须与d:DataContext一起使用的实例StaticResource,例如.

您可以这样做:

<UserControl x:Class="WpfApplication1.UserControl1"
             xmlns:local="clr-namespace:WpfApplication1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <UserControl.Resources>
        <local:MyViewModel x:Key="mockViewModel"/>
    </UserControl.Resources>
    <Grid>
        <ItemsControl d:DataContext="{StaticResource mockViewModel}" 
                      ItemsSource="{Binding Items}">
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding Name}"/>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
    </Grid>
</UserControl>
Run Code Online (Sandbox Code Playgroud)

我用作数据上下文的类定义如下:

namespace WpfApplication1
{
    public class Item
    {
        public Item(string name)
        {
            Name = name;
        }

        public string Name { get; private set; }
    }

    public class MyViewModel
    {
        public List<Item> Items
        {
            get 
            {
                return new List<Item>() { new Item("Thing 1"), new Item("Thing 2") };
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

当然,您也可以UserControl在窗口上或窗口上设置数据上下文.

这是结果: 在此输入图像描述

  • 我读到将其作为资源加载将使应用程序也在运行时加载它.我正在使用`d:DataContext ="{d:DesignInstance Type = mocks:MyViewModelMock,IsDesignTimeCreatable = True}`但它不起作用 (4认同)