国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

C#---多選和單選控件

2019-11-06 06:26:36
字體:
供稿:網(wǎng)友

C#---多選和單選控件

1、控件介紹

CheckBox:設(shè)置默認(rèn)選中:checked屬性設(shè)為true。

RadioButton:設(shè)置默認(rèn)選中:checked屬性設(shè)為true。

給控件分組:使用容器中的“GroupBox”控件。

2、實例演示

(1)新建一個C#---WINFORM程序。

(2)其代碼為:

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace 單選和多選控件{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        PRivate void b_Login_Click(object sender, EventArgs e)        {            if (rad_stu.Checked||rad_teh.Checked)            {                string name = txt_name.Text.Trim();                string pwd = txt_pwd.Text;                if (rad_stu.Checked)    //學(xué)生被選中                {                    if (name == "student" && pwd == "student")                    {                        MessageBox.Show("學(xué)生登錄成功!");                    }                    else                    {                        MessageBox.Show("登錄失??!");                        txt_name.Clear();   //清空用戶名文本框                        txt_pwd.Clear();    //清空密碼文本框                        txt_name.Focus();   //用戶名文本框獲得輸入光標(biāo)焦點                    }                }                else   //選擇老師                {                    if (name == "teacher" && pwd == "teacher")                    {                        MessageBox.Show("老師登錄成功!");                    }                    else                    {                        MessageBox.Show("登錄失敗!");                        txt_name.Clear();   //清空用戶名文本框                        txt_pwd.Clear();    //清空密碼文本框                        txt_name.Focus();   //用戶名文本框獲得輸入光標(biāo)焦點                    }                }            }            else  //都沒有選中            {                MessageBox.Show("請先選擇學(xué)生或者老師");            }                                            }    }}

運行結(jié)果


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 张掖市| 盱眙县| 玉山县| 北安市| 衡南县| 迁西县| 南充市| 临夏市| 淳安县| 济源市| 平果县| 博罗县| 梁平县| 兴安县| 滨州市| 平阴县| 平昌县| 通许县| 永胜县| 虹口区| 灵台县| 安西县| 花莲市| 翁源县| 兴义市| 和静县| 太和县| 桑植县| 镇远县| 通山县| 龙井市| 鹤山市| 黄浦区| 富宁县| 余姚市| 新兴县| 阿坝| 青田县| 开平市| 光山县| 富顺县|