วันอังคารที่ ๑๐ มิถุนายน พ.ศ. ๒๕๕๑

Visual C# GUI 3

ทดลองเล่น radioButton กับ checkBox กันครับ

เป้าหมาย


อันนี้ง่ายๆ ครับ ใช้คุณสมบัติ Checked

public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
radioDT.Checked = true;
radioPC.Checked = true;
cbMouse.Checked = true;
}

private void bttOK_Click(object sender, EventArgs e)
{
string choice = "คุณเลือก ";
if (radioDT.Checked)
choice += radioDT.Text;
else if (radioNB.Checked)
choice += radioNB.Text;
choice += Environment.NewLine + "ประเภท ";
if (radioPC.Checked)
choice += radioPC.Text;
else if(radioMAC.Checked)
choice += radioMAC.Text;
choice += Environment.NewLine + "และของแถม ";
if (cbMouse.Checked)
choice += cbMouse.Text + " ";
if (cbFlash.Checked)
choice += cbFlash.Text;

txtResult.Text = choice;
}
}

เรียบร้อยครับ