C# String Kaydırma
C# yeni baslayan arkadaslarıma örnek bir calısma.Timer yardımıyla kelimeleri kaydırarak yazdırmak.
Bu uygulama için ihtiyacınız olan bir windows form application bir timer ve bir textbox.Uygulamanın kod kısmı su sekildir.
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 yuruyen_yazı
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.Text = "EBUBEKİR BOZKURT FIRAT UNIVERSİTESİ";
timer1.Interval = 1000;
timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text.Substring(1) + textBox1.Text.Substring(0, 1);
}
}
}
Bu uygulama için ihtiyacınız olan bir windows form application bir timer ve bir textbox.Uygulamanın kod kısmı su sekildir.
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 yuruyen_yazı
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.Text = "EBUBEKİR BOZKURT FIRAT UNIVERSİTESİ";
timer1.Interval = 1000;
timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text.Substring(1) + textBox1.Text.Substring(0, 1);
}
}
}
Yorumlar
Yorum Gönder