将CheckBox绑定到ListBox中的SelectedItem

时间:2013-06-24 07:33:35

标签: c# xaml data-binding windows-store-apps selecteditem

我在WPF中创建了一个ListBox,它执行以下操作:

它绑定到我的ViewModel中的DataSource。 ListBox包含Items,每个项目旁边都是一个CheckBox。如果用户单击CheckBox,则选择Item并执行Command。它工作正常,WPF的代码如下所示:

    <ListBox ItemsSource="{Binding OCAntwort}" SelectedItem="{Binding SelectedAntwort}" >
        <ListBox.Resources>
            <Style TargetType="ListBoxItem">
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate TargetType="ListBoxItem">
                            <Grid>
                                <Grid>
                                <Grid.ColumnDefinitions>
                                    <ColumnDefinition Width="Auto"/>
                                    <ColumnDefinition/>
                                </Grid.ColumnDefinitions>

                                    <!--ElementName=Window is the Name of the XAML (in root definition)-->
                                    <CheckBox DataContext="{Binding DataContext, ElementName=Window}" Command="{Binding CheckAnswer}" CommandParameter="{Binding ElementName=cbox, Path=IsChecked}" IsChecked="{Binding RelativeSource={RelativeSource AncestorType=ListBoxItem}, Path=IsSelected}" x:Name="cbox" HorizontalAlignment="Right"/>
                                </Grid>
                            </Grid>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </ListBox.Resources>
    </ListBox>

现在我在Windows Store App上尝试相同,但是没有AncestorType ......如果我这样做:

<Style TargetType="ListBoxItem" x:Name="lbitem">

<CheckBox DataContext="{Binding DataContext, ElementName=Window}" Command="{Binding CheckAnswer}" CommandParameter="{Binding ElementName=cbox, Path=IsChecked}" IsChecked="{Binding ElementName=lbitem, Path=IsSelected}" x:Name="cbox" HorizontalAlignment="Left"/>

Checkbox消失,它只显示OCAntwort的ItemsSource。单击一个项目将不会执行CheckBox的命令(因为没有CheckBox)。 这样做:

IsChecked="{Binding ElementName=lbitem, Path=IsSelected,RelativeSource={RelativeSource Mode=Self}}"

将显示CheckBox并执行Command,但它没有被绑定到SelectedItem。

如何将CheckBox(每个ListBoxItem的ListBoxItem旁边显示)绑定到ListBox的SelectedItem?工作代码在上面...我希望代码应该在我的Windows应用商店应用程序中运行(以及稍后在我的Windows Phone应用程序中)。

示例:

您可以在此处下载示例:http://weblogs.asp.net/marianor/archive/2008/02/04/multiselect-listview-with-checkboxes-in-wpf.aspx

这显示了我想在Windows应用商店应用中实现的目标。

编辑:这样做会显示带有内容和CheckBox的ListBox,但我仍然需要通过SelectedItem绑定CheckBox。表示当用户单击CheckBox时,必须选择ListBoxItem,或者如果用户单击ListBoxItem,则必须选择CheckBox。

    <ListBox ItemsSource="{Binding OCAntwort}" SelectedItem="{Binding SelectedAntwort}" Grid.Row="2" Grid.Column="1" x:Name="listBox" >
        <ListBox.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <TextBlock Text="{Binding Text}" Width="150" VerticalAlignment="Center"/>
                    <CheckBox IsChecked="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=IsSelected, Mode=TwoWay}" />
                </StackPanel>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>

2 个答案:

答案 0 :(得分:1)

不确定您是否已找到解决方案,但我使用以下代码在IsChecked的{​​{1}}属性和a的CheckBox属性之间建立双向绑定父IsSelectedListBoxItem

ListViewItem

答案 1 :(得分:0)

在ListBoxItem中编写时应该使用TemplatedParent。

IsChecked="{Binding ElementName=lbitem, 
            Path=IsSelected,
            RelativeSource={RelativeSource Mode=TemplatedParent}}"

我认为这可以解决您的问题。