按照gehho对“MVVM Group Radio Button”的回答,我正在尝试向列表项添加一个单选按钮,以便在选择列表项时选中单选按钮,当未选择列表项时,未选中单选按钮. Kelly 对他或她的“将 RadioButton IsChecked 绑定到 ListBoxItem IsSelected 和 ListBox IsFocused”问题有一个很好的回答,看起来它应该可以满足我的需要。然而,我对 Kelly 的 XAML 的简单转换不起作用 - 单选按钮仍未选中。这是我的全部 MainWindow.xaml
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:SampleData="clr-namespace:Expression.Blend.SampleData.SampleDataSource"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="RadioButton.MainWindow"
x:Name="Window"
Title="MainWindow"
Width="640" Height="480">
<Window.Resources>
<SampleData:SampleDataSource x:Key="SampleDataSource" d:IsDataSource="True"/>
<ControlTemplate x:Key="LBItemControlTemplate" TargetType="{x:Type ListBoxItem}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="20"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock TextWrapping="Wrap" Text="{Binding Property1}" Grid.Column="1"/>
<RadioButton x:Name="rbIsSelected" IsChecked="False" IsEnabled="False"/>
</Grid>
<ControlTemplate.Triggers>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsSelected" Value="True"/>
<Condition Property="Selector.IsSelectionActive" Value="True"/>
</MultiTrigger.Conditions>
<Setter Property="IsChecked" TargetName="rbIsSelected" Value="True"/>
</MultiTrigger>
</ControlTemplate.Triggers>
</ControlTemplate>
<DataTemplate x:Key="ListBoxItemTemplate">
<ListBoxItem Template="{StaticResource LBItemControlTemplate}"/>
</DataTemplate>
</Window.Resources>
<Grid x:Name="LayoutRoot" DataContext="{Binding Source={StaticResource SampleDataSource}}">
<ListBox ItemsSource="{Binding Collection}" ItemTemplate="{DynamicResource ListBoxItemTemplate}" SelectionMode="Single"/>
</Grid>
</Window>
任何人都可以看到为什么这不起作用并建议修复或不同的方法吗?