KeyValuePair要素をDictionaryからItemsControlにバインドしようとしています。 私の辞書には、15個の要素を持っており、次のコードは、私の15件のTextBoxを示しています。C#/ WPFのItemsControlにバインドする
<WrapPanel Name="PersonsWrapPanel" Grid.Row="0">
<ItemsControl ItemsSource="{Binding Persons}" >
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Horizontal" Width="auto">
</WrapPanel>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBox Text="{Binding Value.Text}"></TextBox>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</WrapPanel>
残念ながら(キーまたは値になります)任意のテキストボックスの内容なしに。 アイデア