WPF_RadioButton使用
Posted shyw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF_RadioButton使用相关的知识,希望对你有一定的参考价值。
属性说明
Content=“radioButton” //显示信息
IsChecked=“True” //默认选中
GroupName=“carSize” //多个单选框设置同一GroupName,则只能多选一,实现单选效果
HorizontalAlignment=“Left” //控件位置-水平居中
VerticalAlignment=“Top” //控件位置-垂直居中
FontSize=“12” //文字大小
FontWeight=“Bold” //文字加粗显示
选中时改变颜色
private void radioButton1_Checked(object sender, EventArgs e) { this.radioButton1.ForeColor = this.radioButton1.Checked ? Color.Red : Color.Black; }
以上是关于WPF_RadioButton使用的主要内容,如果未能解决你的问题,请参考以下文章
Android课程---Android Studio使用小技巧:提取方法代码片段