博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
checkBox控件的使用方法
阅读量:5320 次
发布时间:2019-06-14

本文共 1219 字,大约阅读时间需要 4 分钟。

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 checkboxTest{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void checkBox1_CheckedChanged(object sender, EventArgs e)        {            if (checkBox1.Checked)            {                checkBox2.Checked = false;                checkBox3.Checked = false;                MessageBox.Show("1OK");            }        }        private void checkBox2_CheckedChanged(object sender, EventArgs e)        {            if (checkBox2.Checked)            {                checkBox1.Checked = false;                checkBox3.Checked = false;                MessageBox.Show("2OK");            }        }        private void checkBox3_CheckedChanged(object sender, EventArgs e)        {            if (checkBox3.Checked)            {                checkBox1.Checked = false;                checkBox2.Checked = false;                MessageBox.Show("3OK");            }        }    }}

  在多个checkBox中进行切换代码。

转载于:https://www.cnblogs.com/chinatrust/p/4342825.html

你可能感兴趣的文章
CSS
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>
如何改善下面的代码 领导说了很耗资源
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
把word文档中的所有图片导出
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>