17 Mart 2015 Salı

Substring ile Kayan Yazı




Örneğin 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 TİMER
{
    public partial class Form1 : Form
    {
        int sayi;
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            timer1.Start();
         
        }



        private void Form1_Load(object sender, EventArgs e)
        {
         
         
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            label1.Text = label1.Text.Substring(1) + label1.Text.Substring(0, 1);

                                                                            //Erdoğan Gençtürk.
         
        }
    }
}

Hiç yorum yok: