Font font1 = new Font("宋体", 9, FontStyle.Regular);
        Font font2 = new Font("宋体", 9, FontStyle.Bold);
        private void radioButton1_CheckedChanged(object sender, EventArgs e)
        {
            if (radioButton1.Font == font1)
            {
                radioButton1.Font = font2;
                radioButton1.BackColor = Color.SkyBlue;
                radioButton1.ForeColor = Color.Red;
            } 
            else
            {
                radioButton1.Font = font1;
                radioButton1.BackColor = Color.Transparent;
                radioButton1.ForeColor = Color.Black;
            }
        }
分别改了字体,背景颜色和前景色。