Picturebox , Doğrulama , Timer Örneği


# ŞARTLAR #
* Okul No Aynı Olamaz..
* İsim Boş İse Devam Etmek İçin Doğrulama İsteği Gelecek..
* Listbox ' ta Seçilen İtemlere Göre Resim Gösterilecek.

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 WindowsFormsApplication6
{
    public partial class Form1 : Form
    {
        ArrayList okulno = new ArrayList();
        ArrayList ad = new ArrayList();
        ArrayList soyad = new ArrayList();
        int p = 0; int f = 0;
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click_1(object sender, EventArgs e)
        {
            int m = 0;
            int n = 1;
            string durum;
            int a = okulno.IndexOf(textBox1.Text);

            if (a != -1)
            {
                MessageBox.Show("Aynı olamaz...");
                textBox1.Text = null;
                textBox1.Focus();
                n = 0;
            }
            if (textBox2.Text == "")
            {
                durum = (MessageBox.Show("Adı boş devam etmek isitiyo musun", "UYARI", MessageBoxButtons.YesNo)).ToString();
                if (durum == "Yes")
                {
                    m = 1;
                }

            }
            else
            {
                m = 1;
            }

            if (m == 1 && n == 1)
            {
                okulno.Add(textBox1.Text);
                ad.Add(textBox2.Text);
                soyad.Add(textBox3.Text);
                textBox1.Text = null;
                textBox2.Text = null;
                textBox3.Text = null;
            }


        }                     

        private void button2_Click(object sender, EventArgs e)
        {
            listBox1.Items.Clear();
            int c = 0;
            int k = ad.Count;
            for (int i = 0; i <= k - 1; i++)
            {
                listBox1.Items.Add(++c + ")" + okulno[i] + " " + ad[i] + " " + soyad[i]);
            }
        }

        private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            int z = listBox1.SelectedIndex;
            pictureBox1.Image = ımageList1.Images[z];
        }

        private void button3_Click(object sender, EventArgs e)
        {
            listBox1.SelectedIndex = p;
            p = p + 1;
            if (p == okulno.Count)
            {
                p = 0;
            }


        }

        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {
            timer1.Start();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            f = f+ 1;
            label4.Text = f.ToString();
            label4.Visible = true;
            if (f == 5)
            {
                f = 0;
                listBox1.SelectedIndex = p;
                p = p + 1;
                int r=okulno.Count;
                if (p == r )
                {
                    p = 0;
                }
            }
            if (checkBox1.Checked == false)
            {
                timer1.Stop();
                label4.Visible = false;
            }
        }
    }
}

Hiç yorum yok:

Yorum Gönder