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

C#自学之路22

时间:2015-04-13 07:02:58      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:private   public   false   

22.单选按钮控件

  1.常用的属性。

a.Text属性。单选按钮旁边的说明文字,说明单选按钮的用途。

b.Checked属性。选中为true,否则为false。


  2.响应的事件。

a.Click事件。

b.CheckedChanged事件。


using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;


namespace WindowsFormsApplication7

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }


        private void radioButton1_CheckedChanged(object sender, EventArgs e)

        {

            this.textBox1.Text = "8.5";

        }


        private void radioButton2_CheckedChanged(object sender, EventArgs e)

        {

            this.textBox1.Text = " 9.8";

        }


        private void radioButton3_CheckedChanged(object sender, EventArgs e)

        {

            this.textBox1.Text = " 10.9";

        }

    }

}



技术分享

本文出自 “郭俊的博客” 博客,转载请与作者联系!

C#自学之路22

标签:private   public   false   

原文地址:http://10093949.blog.51cto.com/10083949/1631636

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