您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“ C#中RadioButton的實例用法”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
C# RadioButton是大家經(jīng)常用的一個控件,其屬性之多,但是我們只需掌握其中幾個就可以了,下面將做一下簡單的介紹。
C# RadioButton單選按鈕一般用作一個組。
1.C# RadioButton只允許用戶從幾個選項中選擇一個,同一個容器中一次只能選擇一個按鈕;
2.C# RadioButton的Appearance屬性:根據(jù)的以下兩種取值控制外觀:
Normal:圓圈+標(biāo)簽,選中后會填充圓圈;
Button:按鈕,類似于開關(guān),選中后按下,未選中時凸起;
3.C# RadioButton的Checked屬性:
true:選中;
false: 未選中;
4.C# RadioButton的CheckedAlign屬性:確定圓圈與標(biāo)簽文本的相對位置。
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace TestRadioButton { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { string checkedRBName = ""; //取得選中單選按鈕的名稱 if (radioButton1.Checked) { checkedRBName = radioButton1.Name; } else if (radioButton2.Checked) { checkedRBName = radioButton2.Name; } else { checkedRBName = radioButton3.Name; } MessageBox.Show(checkedRBName + " was checked."); } } }
“ C#中RadioButton的實例用法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。