我正在为我的第一次真正的 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 填充了我想要的所有内容,但由于某种原因,我的表单上没有显示任何内容。