0
下面定義的ItemsControl
填充了string[] WeekDays
。爲ItemsControl.ItemTemplate
定義的DataTemplate
不起作用,即週末的項目沒有填充紅色背景。我該如何解決?謝謝。WPF:如果項目是字符串,如何爲ItemsControl中的項目應用數據模板?
...
<ItemsControl
Grid.Row="1"
Margin="20,0,0,0"
ItemsSource="{Binding Path=WeekDays}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<UniformGrid Rows="1" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Background="Red" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
...
注意:string[] WeekDays
是此控件的依賴項屬性。我不確定這些信息是否可能與找到解決方案相關。