0

我正在尝试绑定到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>

任何人都可以提供有关多级数据绑定和触发器的教程吗?

4

1 回答 1

0

我不确定问题是什么。将您的 ListBox、ItemsControl 或其他内容绑定到列表,然后将矩形的宽度绑定到当前项(通过设置空绑定表达式):

<Rectangle Width="{Binding}" />
于 2013-07-31T05:52:59.493 回答