我有一個ItemsControl包含產品類別,我有另一個ItemsControl包含當前選擇的所有文章catégoie列表,我需要關聯當前選擇的與ItemsControl的文章WPF ItemsControl:更改ItemsControl ItemsControl從當前選擇的另一個ItemsControl
<ItemsControl ItemsSource="{Binding Path=Categories}">
...
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Content="{Binding Path=CategorieCaption}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
...
</ItemsControl>
<ItemsControl ItemsSource="{Binding Path=SelectedCategories.Articles}">
...
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Content="{Binding Path=ArticleCaption}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
...
</ItemsControl>
你會如何選擇其實在一個ItemsControl項目?您應該也許應該使用ListBox。 – Clemens