17 Mart 2015 Salı

C# Kura Çekimi Programı





Kodlar:



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;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        int kurra, rastgele;
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            listBox1.Items.Add(textBox1.Text);
            textBox1.Text="";
        }

        private void button2_Click(object sender, EventArgs e)
        {
            int b = listBox1.Items.Count;
            Random rastgele = new Random();
            int kurra = rastgele.Next(0, b);
            label1.Text = "kazanan" + listBox1.Items[kurra].ToString();
        }

    }
}
                                                             Hazırlayan: Adil AYGÜN




Hiç yorum yok: