获取组中的选定单选按钮(WPF)

Kia*_*eng 9 c# wpf binding mvvm radio-button

我有一个ItemsControl在我的程序包含单选按钮的列表.

<ItemsControl ItemsSource="{Binding Insertions}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <Grid>
                    <RadioButton GroupName="Insertions"/>
                </Grid>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
Run Code Online (Sandbox Code Playgroud)

如何以MVVM方式在 Insertions中找到所选的单选按钮?

我在互联网上找到的大多数例子都涉及IsChecked在转换器的帮助下设置绑定属性的各个布尔属性.

是否有ListBox SelectedItem我可以绑定的等价物?

Chr*_*lor 9

想到的一个解决方案是向IsCheckedInsertion实体添加一个布尔属性,并将其绑定到Radio按钮的`IsChecked'属性.这样,您可以在View Model中查看"Checked"单选按钮.

这是一个快速而肮脏的例子.

注意:我忽略了IsChecked也可以null使用的事实,你可以bool?根据需要使用它.

简单的ViewModel

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;

namespace WpfRadioButtonListControlTest
{
  class MainViewModel
  {
    public ObservableCollection<Insertion> Insertions { get; set; }

    public MainViewModel()
    {
      Insertions = new ObservableCollection<Insertion>();
      Insertions.Add(new Insertion() { Text = "Item 1" });
      Insertions.Add(new Insertion() { Text = "Item 2", IsChecked=true });
      Insertions.Add(new Insertion() { Text = "Item 3" });
      Insertions.Add(new Insertion() { Text = "Item 4" });
    }
  }

  class Insertion
  {
    public string Text { get; set; }
    public bool IsChecked { get; set; }
  }
}
Run Code Online (Sandbox Code Playgroud)

XAML - 后面的代码没有显示,因为它没有生成代码以外的代码.

<Window x:Class="WpfRadioButtonListControlTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpfRadioButtonListControlTest"
        Title="MainWindow" Height="350" Width="525">
  <Window.Resources>
    <local:MainViewModel x:Key="ViewModel" />
  </Window.Resources>
  <Grid DataContext="{StaticResource ViewModel}">
    <ItemsControl ItemsSource="{Binding Insertions}">
      <ItemsControl.ItemTemplate>
        <DataTemplate>
          <Grid>
            <RadioButton GroupName="Insertions" 
                         Content="{Binding Text}" 
                         IsChecked="{Binding IsChecked, Mode=TwoWay}"/>
          </Grid>
        </DataTemplate>
      </ItemsControl.ItemTemplate>
    </ItemsControl>
  </Grid>
</Window>
Run Code Online (Sandbox Code Playgroud)