Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Get the selected value of C# RadioButton

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

Introduction to some properties of C # RadioButton

1.C# RadioButton allows users to select only one of several options, and can only select one button at a time in the same container.

The Appearance property of 2.C# RadioButton: controls the appearance based on the following two values:

Normal: circle + label, which will fill the circle when selected

Button: button, similar to a switch, pressed when selected and raised when unchecked

Checked attribute of 3.C# RadioButton:

True: selected

False: not selected

The CheckedAlign property of 4.C# RadioButton: determines the relative position of the circle to the label text.

Private void button1_Click (object sender, EventArgs e) {string checkedRBName = ""; / / get the name of the selected radio button if (radioButton1.Checked) {checkedRBName = radioButton1.Name;} else if (radioButton2.Checked) {checkedRBName = radioButton2.Name;// get the contents of the label corresponding to the radioButton button, using the radioButton2.Text attribute

} else {checkedRBName = radioButton3.Name;} MessageBox.Show (checkedRBName + "was checked."); original: http://www.csharpwin.com/csharpspace/3911r2169.shtml

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.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report