我正在尝试绑定到List<int>
,因此项目数等于 List.Count,并且每个项目都是一个宽度为 List[i] 的 Rectangle。
<ListBox ItemsSource="{Binding Path=ActiveList}" >
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock Foreground="Azure"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
任何人都可以提供有关多级数据绑定和触发器的教程吗?