0

我在数据模板中有带有复选框的组合框。Combobox ItemSource 属性与 ViewModel 中的集合绑定。我想让一个特定的复选框默认选中。我怎样才能做到这一点?

<ComboBox Grid.Column="1"
          ItemsSource="{Binding MyCollection, Mode=OneWay}" 
          Style="{StaticResource MyComboboxStyle}"
          Margin="5"
          MinWidth="120">
                <ComboBox.ItemTemplate>
                    <DataTemplate>            
                        <CheckBox Command="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=UserControl}, Path=DataContext.MyCheckedCommand}"
                                  CommandParameter="{Binding RelativeSource={RelativeSource Self}}"
                                  Content="{Binding}"
                                  IsChecked="false"
                                  VerticalAlignment="Center"
                                  Margin="3"/>                    
                    </DataTemplate>
                </ComboBox.ItemTemplate>
            </ComboBox>
4

1 回答 1

1

我会在你的视图模型中创建一个布尔属性,然后在加载集合时,在你的集合中找到应该检查的对象并将其设置为 true。

 public bool IsChecked { get; set; }

XAML:

  <CheckBox Command="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=UserControl}, Path=DataContext.MyCheckedCommand}"
                              CommandParameter="{Binding RelativeSource={RelativeSource Self}}"
                              Content="{Binding}"
                              IsChecked="{Binding IsChecked}"
                              VerticalAlignment="Center"
                              Margin="3"/>

但是,这可能需要您将此属性与您的对象模型分开

于 2012-08-19T20:55:04.723 回答