C# Windows Formda Kayan Yazı örneği için Yeni bir proje açıyoruz ve 1 adet Label ile Timer nesnemizi formumuza ekliyoruz. Örneğimizde formumuzun genişliği 700, yüksekliğini ise 90 olarak ayarlıyoruz.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Lab_1._4_Yürüyen_Yazı_ { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { timer1.Enabled = true; } private void timer1_Tick(object sender, EventArgs e) { if (label1.Left > -340) { label1.Left -= 1; } else { label1.Left = 700; } } } } |
Basit ama güzel bir anlatım olmuş
Çok teşekkür ederim senin sayende c# ı doğru düzgün öğreniyorum