gpt4 book ai didi

WPF 单选按钮(二)(绑定(bind)到 boolean 值)

转载 作者:行者123 更新时间:2023-12-03 07:22:30 27 4
gpt4 key购买 nike

我有一个带有复选框的 boolean 类型属性。

我想将其更改为绑定(bind)在同一属性上的两个单选按钮,显示值 true/false。

如何才能做到这一点?

最佳答案

<RadioButton GroupName="Group1" 
IsChecked="{Binding PropertyValue}" Content="Yes" />
<RadioButton GroupName="Group1" Content="No"
IsChecked="{Binding PropertyValue,
Converter={StaticResource BoolInverterConverter}}" />
public class BoolInverterConverter : IValueConverter
{
#region IValueConverter Members

public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
if (value is bool)
{
return !(bool)value;
}
return value;
}

public object ConvertBack(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
if (value is bool)
{
return !(bool)value;
}
return value;
}

#endregion
}

关于WPF 单选按钮(二)(绑定(bind)到 boolean 值),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3361362/

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