惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

博客园 - 水色天空

用docfx生成c#项目API的简洁教程 wpf datagrid鼠标穿透 OxyPloot设置X轴时间DateTimeAxis WPF中MVVM模式下ComboBox绑定,无法更新selectedItem的解决方案 WPF设置DatePicker日期格式之卡Bug大法 WPF程序自动重启 InstallShield打包.net项目无法包含数据库、配置文件等 handycontrol中NumericUpDown无法显示自定义错误提示的解决办法 DataGrid代码生成列居中问题 Chapter 2 - Sockets and Patterns【选译,哈哈】 Part 9 High-Water Marks Chapter 2 - Sockets and Patterns【选译,哈哈】 Part 9 Missing Message Problem Solver Chapter 2 - Sockets and Patterns【选译,哈哈】 Part 9 Zero-Copy Chapter 2 - Sockets and Patterns【选译,哈哈】 Part 8 Node Coordination Chapter 2 - Sockets and Patterns【选译,哈哈】 Part 6 Multithreading with ZeroMQ Chapter 2 - Sockets and Patterns【选译,哈哈】 Part 7 Signaling Between Threads (PAIR Sockets) Chapter 2 - Sockets and Patterns【选译,哈哈】 Part 5 Handling Interrupt Signals 解决.net reactor加密后的dll,在其它电脑无法运行的问题 函数返回值的一些规则 Chapter 2 - Sockets and Patterns【选译,哈哈】 Part 4 Handling Errors and ETERM
WPF绑定RadioButton的标准做法
水色天空 · 2021-09-22 · via 博客园 - 水色天空

枚举:

enum EnumRadio
{
  否,是
}

转换器:

 1 [ValueConversion(typeof(EnumRadio), typeof(bool))]
 2     class EnumRadioConverter : IValueConverter
 3     {
 4         public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
 5         {
 6             return value == null ? false : value.Equals(parameter);
 7         }
 8 
 9         public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
10         {
11             return value != null && value.Equals(true) ? parameter : Binding.DoNothing;
12         }
13     }

Xaml:

<model:EnumRadioConverter x:Key="EnumRadioConverter"/>


<RadioButton GroupName="secondLoop" Content="" IsThreeState="False" IsChecked="{Binding HouseConfig.HouseStep2.IsAccumulation, Converter={StaticResource EnumRadioConverter}, ConverterParameter={x:Static model:EnumRadio.是}}" VerticalAlignment="Center"/>
                                            <RadioButton GroupName="secondLoop" Content="" IsThreeState="False" IsChecked="{Binding HouseConfig.HouseStep2.IsAccumulation, Converter={StaticResource EnumRadioConverter}, ConverterParameter={x:Static model:EnumRadio.否}}" VerticalAlignment="Center" Margin="20,0"/>
                                        

引用:https://www.cnblogs.com/xpvincent/p/10267320.html