In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
Editor to share with you what are the properties and events of the multi-check box CheckBox in C#. I hope you will get something after reading this article. Let's discuss it together.
In C #, the multibox component is: CheckBox. Like the checkbox, it is also a more commonly used component.
The main properties of the checkbox are: Name, Text, Checked.
The Name attribute represents the name of the component. The Text attribute represents the title of the component. Checked indicates whether the component has been selected.
The main event is the CheckedChanged event.
For example: choose multiple choices of personal interests and hobbies. The related effects and code are as follows:
Void CheckBox1CheckedChanged (object sender, EventArgs e)
{
If (checkBox1.Checked)
{
TextBox1.AppendText (checkBox1.Text+ "\ n")
}
}
Void CheckBox2CheckedChanged (object sender, EventArgs e)
{
If (checkBox1.Checked)
{
TextBox1.AppendText (checkBox2.Text+ "\ n")
}
}
Void CheckBox3CheckedChanged (object sender, EventArgs e)
{
If (checkBox3.Checked)
{
TextBox1.AppendText (checkBox3.Text+ "\ n")
}
}
Void CheckBox4CheckedChanged (object sender, EventArgs e)
{
If (checkBox4.Checked)
{
TextBox1.AppendText (checkBox4.Text+ "\ n")
}
}
After reading this article, I believe you have a certain understanding of "what are the properties and events of multi-check box CheckBox in C#". If you want to know more about it, welcome to follow the industry information channel, thank you for reading!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.