gpt4 book ai didi

wpf - 单选按钮 Ischecked 属性在 wpf mvvm 中不起作用

转载 作者:行者123 更新时间:2023-12-05 01:15:24 24 4
gpt4 key购买 nike

我无法将两个单选按钮绑定(bind)到我的 xaml 表单和具有相同组名的 IsChecked 属性,我也为此使用了 nullabletoboolconverters。但是,单选按钮的 ischecked 属性在我的代码中没有改变(它根本没有击中断点,一旦我们在第二个单选按钮之后击中第一个单选按钮)并且我分别绑定(bind)其中两个的 ischecked 属性,因为我需要设置基于 radiobuttons 属性的窗体上某些其他面板的可见性。

以下是我的 xaml 代码,后来是我的单选按钮属性的 viewmodel.cs 代码:

   <RadiobuttonSelectedConverter x:Key="CheckedSelection"/>// declaring my converter class in my resource dictionary.

<StackPanel Orientation="Horizontal" Grid.Column="0" Grid.Row="3" Margin="10,5,0,0">
<RadioButton GroupName="RadiosGroup" IsChecked="{Binding IsRadioButton1,Mode=TwoWay,
Converter={StaticResource CheckedSelection}, ConverterParameter=true}">
First</RadioButton>
<RadioButton GroupName="RadiosGroup"
Margin="40,0,0,0" IsChecked="{Binding IsRadioButton2,Mode=TwoWay,
Converter={StaticResource CheckedSelection}, ConverterParameter=true}">Second</RadioButton>
</StackPanel>



private bool _isRadioButton1;

public bool IsRadioButton1
{
get
{
return _isRadioButton1;
}
set
{
if _isRadioButton1!= value)
{
_isRadioButton1= value;

IsRadioButton2= false;
OnPropertyChanged("IsRadioButton1");

}
}
}


private bool _isRadioButton2;

public bool IsRadioButton2
{
get
{
return _isRadioButton2;
}
set
{
if (_isRadioButton2 != value)
{
_isRadioButton2 = value;

IsRadioButton1= false;
OnPropertyChanged("IsRadioButton2");

}
}
}

以下是我的转换器代码:

  [ValueConversion(typeof(bool?), typeof(bool))]
public class RadiobuttonSelectedConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
bool param = bool.Parse(parameter.ToString());
if (value == null)
{
return false;
}
else
{
return !((bool)value ^ param);
}
}

public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
bool param = bool.Parse(parameter.ToString());
return !((bool)value ^ param);
}
}

有人请帮我解决我的问题提前谢谢..

最佳答案

就我个人而言,我不会编码相关的 RadioButtons像这样。由于您想要的选择行为与用于 ListBox 的选择行为相同, 我发现简单地使用 ListBox 是最简单的被设计为使用 RadioButtons对于每个项目。

代码隐藏通常包含

  • ObservableCollection<string> Options
  • string SelectedOption

我将在 ListBox 中使用这种样式:

<Style x:Key="RadioButtonListBoxStyle" TargetType="{x:Type ListBox}">
<Setter Property="BorderBrush" Value="Transparent"/>
<Setter Property="KeyboardNavigation.DirectionalNavigation" Value="Cycle" />
<Setter Property="ItemContainerStyle">
<Setter.Value>
<Style TargetType="{x:Type ListBoxItem}" >
<Setter Property="Margin" Value="2, 2, 2, 0" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Border Background="Transparent">
<RadioButton
Content="{TemplateBinding ContentPresenter.Content}" VerticalAlignment="Center"
IsChecked="{Binding Path=IsSelected,RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay}"/>

</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Setter.Value>
</Setter>
</Style>

样式应用如下:

<ListBox ItemsSource="{Binding Options}"
SelectedValue="{Binding SelectedOption}"
Style="{StaticResource RadioButtonListBoxStyle}" />

您也可以使用其他东西代替 String用于收藏,例如 ChildViewModel ,然后根据当前项目设置相关 View ,这意味着您不必为 Visibility 而烦恼您的 ViewModel 中的相关面板要么。

<DockPanel>
<ListBox ItemsSource="{Binding OptionViewModels}"
SelectedValue="{Binding SelectedViewModel}"
Style="{StaticResource RadioButtonListBoxStyle}"
DockPanel.Dock="Left">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding DisplayName}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

<ContentControl Content="{Binding SelectedViewModel}" />
</DockPanel>

但至于您的实际问题,我可以想到它可能行为不正确的 3 个原因。

第一个概述在 Jay's answer 中: 你正在设置 IsChecked2在你的 setter 中为 IsChecked1 设置为 false , 和 IsChecked2IsChecked1在其 setter 中设置为 false,因此最终结果是两个值都为 false。

第二个可能是你的转换器有问题。你说这是一个评论,它在没有转换器的情况下工作正常,所以我认为这可能是问题的一部分。

最后,我相信改变分组 RadioButtons将触发 IsOptionA.IsSelected = false对于旧项目和 IsOptionB.IsSelected = true对于新选择的项目,这两个项目可能在某处交叉了。

关于wpf - 单选按钮 Ischecked 属性在 wpf mvvm 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12142337/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com