数据绑定到int列表“;windows电话8”;

本文关键字:windows 电话 int 列表 数据绑定 | 更新日期: 2023-09-27 18:25:27

我正在尝试绑定到List<int>,因此项目数等于List。计数,每个项目都是一个宽度为List[i]的矩形。

<ListBox ItemsSource="{Binding Path=ActiveList}" >
    <ListBox.ItemTemplate>
         <DataTemplate>
                  <StackPanel Orientation="Horizontal" HorizontalAlignment="Left"> 
                        <TextBlock Foreground="Azure"/>
                  </StackPanel>
         </DataTemplate>
    </ListBox.ItemTemplate>

有人能提供一个关于多级数据绑定和触发器的教程吗?

数据绑定到int列表“;windows电话8”;

我不确定问题出在哪里。将ListBox、ItemsControl或其他东西绑定到列表,然后将矩形的宽度绑定到当前项(通过设置空绑定表达式):

<Rectangle Width="{Binding}" />