// Image List Component | www.aliakyildirim.com | Ali AKYILDIRIM
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;
// Image List Component | www.aliakyildirim.com | Ali AKYILDIRIM
namespace ImageListComponent
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
switch (button1.Text)
{
case "Baslat":
timer1.Start();
button1.Text = "Durdur";
break;
default:
timer1.Stop();
button1.Text = "Baslat";
if (label1.ImageIndex == label2.ImageIndex && label2.ImageIndex == label3.ImageIndex)
{
lblSonuc.Text = "Tebrikler, 1 Milyon TL Kazandin ;D";
}
else
{
lblSonuc.Text = "Olmadi, Tekrar Deneyin..!";
}
break;
}
}
private void timer1_Tick(object sender, EventArgs e)
{
Random rnd = new Random();
int r1 = rnd.Next(0, imageList1.Images.Count);
int r2 = rnd.Next(0, imageList1.Images.Count);
int r3 = rnd.Next(0, imageList1.Images.Count);
label1.ImageIndex = r1;
label2.ImageIndex = r2;
label3.ImageIndex = r3;
lblSonuc.Text = "Islem Baslatildi..";
}
}
}
// Image List Component | www.aliakyildirim.com | Ali AKYILDIRIM
Kaynak: Bu Örnek, Bilge Adam egitimi Sirasinda Türkay Ürkmez Tarafindan Yapilmis ve Yazilimcik.com ailesi tarafindan gelistirilmistir.