Windows手机长列表选择器

时间:2013-01-29 17:14:18

标签: windows-phone-7 windows-phone-8 longlistselector

我有一个长列表选择器,每个列表框项中都包含一个复选框。

长列表选择器绑定到包含图像名称和状态

的列表

我想根据字段的状态选中或取消选中复选框。

我做了很多搜索,但是我无法帮助你。

XAML:

<phone:LongListSelector x:Name="lstBoxRates" Margin="0,27,-12,0" ItemsSource="{Binding Items}" Height="16776941" SelectionChanged="MainLongListSelector_SelectionChanged">
   <phone:LongListSelector.ItemTemplate>
                        <DataTemplate>
                            <StackPanel Orientation="Horizontal" Margin="0,0,0,17">
                                <Image Width="54" Height="54">
                                    <Image.Source>
                                        <BitmapImage UriSource="{Binding LocalPath}" />
                                    </Image.Source>
                                </Image>
                                <TextBlock Text="{Binding name}" TextWrapping="NoWrap" Style="{StaticResource PhoneTextSubtleStyle}"/>
                                <CheckBox x:Name="LBCheckBox" Content="{Binding LineOne}" IsChecked="{Binding IsChecked}" Height="75" Width="412" Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked" />
                            </StackPanel>
                        </DataTemplate>
 </phone:LongListSelector.ItemTemplate>
</phone:LongListSelector>

C#:

        cView = new CViewModel(AppResources.DBConnectionString);
        List<UBCars> ubc = cView.GetAllCars();

        lstBoxRates.ItemsSource = ubc;

1 个答案:

答案 0 :(得分:0)

我尝试了您的代码,并在进行这些更改后正常运行:

  1. 删除了xaml中的ItemsSource绑定。设置两次没有意义
  2. 在模型中使用属性,而不是字段(UBCars类)。