C#中RadioButton控件的详细解析

为什么要使用radiobutton

因为他是一个单选的项,有一些控制的程序需要多个选项去运行,一个button是不能满足他的需求的,所以我们引入radiobutton来辅助我们运行程序。

radiobutton的用法

C#中RadioButton控件的详细解析_第1张图片
C#中RadioButton控件的详细解析_第2张图片
C#中RadioButton控件的详细解析_第3张图片
想要查看三门的成绩代码如下

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace radio_lianji
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    Random R = new Random();
    private void button1_Click(object sender, EventArgs e)
    {
      string s = R.Next(1, 101).ToString();
      if (radioButton1.Checked)
      {
        Show(s);
      }
      if (radioButton2.Checked)
      {
        Show(s);
      }
      if (radioButton3.Checked)
      {
        Show(s);
      }


    }
    public void Show(string s)
    {
      textBox1.Text = s;
    }

  }
}

你可能感兴趣的:(C#,c#)