C# – Basit Bir At Yarışı Oyunu Uygulaması
Form üzerinde atların rastgele hızla ilerlemesini ve bitişe ilk ulaşanını messagebox ile gösteren basit bir uygulama.
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; //https://www.programlamadersleri.com namespace AT_YARIŞI { public partial class Form1 : Form {//https://www.programlamadersleri.com int uzaklık1, uzaklık2, uzaklık3; Random rastgelesayi = new Random(); public Form1() { InitializeComponent(); } // https://www.programlamadersleri.com private void Form1_Load(object sender, EventArgs e) { uzaklık1 = pictureBox1.Left; uzaklık2 = pictureBox2.Left; uzaklık3 = pictureBox3.Left; } private void button1_Click(object sender, EventArgs e) { if (timer1.Enabled == false) { timer1.Start(); } //https://www.programlamadersleri.com else { timer1.Stop(); } } // Read more