数据绑定项控件列出WPF

时间:2013-09-25 13:39:12

标签: c# wpf xaml

我正在努力完成我的第一次真正的WPF冒险。

我的XAML如下:

    <ItemsControl
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" Name="ImageList" x:FieldModifier="private" ItemsSource="{Binding Source= images }">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel></StackPanel>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <!-- The Image binding -->
            <TextBox Text="{Binding Key}" MouseDoubleClick="Control_OnMouseDoubleClick"></TextBox>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

我的C#是:

            var ll = new LocalDataHandler();

        var data = ll.FetchContentByContentType(
            new string[] {"Movie", "Television"}, 0);

        List<KeyValuePair<string, string>> images = data.Select(
            contentItem => new KeyValuePair<string, string>(contentItem.ContentName,
                                                            contentItem.ContentId.ToString(
                                                                CultureInfo.InvariantCulture))).ToList();
        ImageList.ItemsSource = images;

ImageList中填充了我想要的所有内容,但出于某种原因,我的表单上没有显示任何内容。

1 个答案:

答案 0 :(得分:0)

尝试将绑定模式设置为OneWay for TeextBox

<TextBox Text="{Binding Key, Mode=OneWay}" MouseDoubleClick="Control_OnMouseDoubleClick"></TextBox>