Kimlik doğrulama veya yönetimden onay bekliyor.
Butonun click eventinde kod blogunun arasına;
string mesaj = "";
mesaj += " " +comboBox1.SelectedItem.ToString();
mesaj += " " +comboBox2.SelectedItem.ToString();
if(checkBox1.Checked)
{
mesaj +=" "+ checkBox1.Text;
}
if(checkBox2.Checked)
{
mesaj +=" "+ checkBox2.Text;
}
...
MessageBox.Show(mesaj);