在wp8中多次选择列表框时出现问题

时间:2014-02-07 14:10:01

标签: c# xaml windows-phone-8

我正在使用ListBox列出一组项目,我希望用户从列表中选择多个项目。我用以下代码尝试了它,

<ListBox x:Name="List" SelectionMode="Multiple" HorizontalAlignment="Left" Height="559" Margin="14,1,-1,0" VerticalAlignment="Top" Width="443" SelectionChanged="List_SelectionChanged_1">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Vertical" Width="420" Height="60">
                            <TextBlock x:Name="tbName" Width="318" Foreground="{Binding color}" Height="35" FontSize="22" Text="{Binding Name}" Margin="-350,13,69,12" />
                        <Canvas x:Name="ContentPanelCanvas" Grid.Row="1" Background="Transparent"  Margin="0,0,12,0">
                            <Line X1="0" Y1="00" X2="420" Y2="0" Stroke="Gray" StrokeThickness="0.3"/>
                        </Canvas>
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

但我仍然没有选中多个项目的复选框。 有什么问题?

1 个答案:

答案 0 :(得分:2)

我认为如果您使用Windows Phone Toolkit中的LongListMultiSelector会更好 您可以找到代码示例here.。另请查看this question