码迷,mamicode.com
首页 > Windows程序 > 详细

WPF_RadioButton使用

时间:2019-11-12 16:05:49      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:highlight   sch   显示   垂直   radio   改变颜色   大小   sharp   div   

属性说明

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使用

标签:highlight   sch   显示   垂直   radio   改变颜色   大小   sharp   div   

原文地址:https://www.cnblogs.com/shyw/p/11842521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!