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";
}
}
}
本文出自 “郭俊的博客” 博客,转载请与作者联系!
原文地址:http://10093949.blog.51cto.com/10083949/1631636