Checkbox ve Radiobutton Örneği


ŞARTLAR
* Checkbox ve Radiobutton


Formun Tamamı İçin Tıklayınız.


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {   
        ArrayList no = new ArrayList();
        ArrayList ad = new ArrayList();
        ArrayList cin = new ArrayList();
        ArrayList dil = new ArrayList();
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            no.Add(textBox1.Text);
            ad.Add(textBox2.Text);
            if (radioButton1.Checked)
            {
                cin.Add("Kız");
            }
            if (radioButton2.Checked)
            {
                cin.Add("Erkek");
            }
            if (checkBox1.Checked && checkBox2.Checked == false)
            {
                dil.Add("İngilizce");
            }
            if (checkBox2.Checked && checkBox1.Checked == false)
            {
                dil.Add("Rusça");
            }
            if (checkBox1.Checked && checkBox2.Checked)
            {
                dil.Add("İngilizce & Rusça");
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            int t = 0;
            listBox1.Items.Clear();
            if (radioButton3.Checked)
            {
                if (checkBox3.Checked&&checkBox4.Checked == false)
                {
                    for (int i = 0; i < no.Count; i++)
                    {
                        if (cin[i].ToString() == "Kız")
                        {
                            if (dil[i].ToString() == "İngilizce")
                            {
                                listBox1.Items.Add(++t + ")" + no[i] + " " + cin[i] + " " + dil[i]);
                            }
                        }
                    }
                }
            }
            if (radioButton3.Checked)
            {
                if (checkBox4.Checked&&checkBox3.Checked == false)
                {
                    for (int i = 0; i < no.Count; i++)
                    {
                        if (cin[i].ToString() == "Kız")
                        {
                            if (dil[i].ToString() == "Rusça")
                            {
                                listBox1.Items.Add(++t + ")" + no[i] + " " + cin[i] + " " + dil[i]);
                            }
                        }
                    }
                }
            }
            if (radioButton3.Checked)
            {
                if (checkBox3.Checked && checkBox4.Checked)
                {
                    for (int i = 0; i < no.Count; i++)
                    {
                        if (cin[i].ToString() == "Kız")
                        {                        
                                listBox1.Items.Add(++t + ")" + no[i] + " "+ad[i]+ " " + cin[i] + " " + dil[i]);                   
                        }
                    }
                }
            }
            if (radioButton4.Checked)
            {
                if (checkBox3.Checked&&checkBox4.Checked == false)
                {
                    for (int i = 0; i < no.Count; i++)
                    {
                        if (cin[i].ToString() == "Erkek")
                        {
                            if (dil[i].ToString() == "İngilizce")
                            {
                                listBox1.Items.Add(++t + ")" + no[i] + " " + cin[i] + " " + dil[i]);
                            }
                        }
                    }
                }
            }
            if (radioButton4.Checked)
            {
                if (checkBox4.Checked&&checkBox3.Checked ==false)
                {
                    for (int i = 0; i < no.Count; i++)
                    {
                        if (cin[i].ToString() == "Erkek")
                        {
                            if (dil[i].ToString() == "Rusça")
                            {
                                listBox1.Items.Add(++t + ")" + no[i] + " " + cin[i] + " " + dil[i]);
                            }
                        }
                    }
                }
            }
            if (radioButton4.Checked)
            {
                if (checkBox4.Checked && checkBox3.Checked)
                {
                    for (int i = 0; i < no.Count; i++)
                    {
                        if (cin[i].ToString() == "Erkek")
                        {
                                listBox1.Items.Add(++t + ")" + no[i] + " " + cin[i] + " " + dil[i]);                     
                        }
                    }
                }
            }
        }
    }
}

Hiç yorum yok:

Yorum Gönder