程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#-循環滾動字幕,timer,從左至右,從右至左,暫停---ShinePans

C#-循環滾動字幕,timer,從左至右,從右至左,暫停---ShinePans

編輯:C#入門知識

C#-循環滾動字幕,timer,從左至右,從右至左,暫停---ShinePans


Lable的Left屬性是可以更改的,但是 Right屬性不可以更改,所以我們可以利用 這個特點做自加 自減運算

 

 

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 滾動字幕
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            this.label2.Left += 8;  //向右移動3個像素
            if(this.label2.Left>this.Width)
            {
                this.label2.Left = 0-label2.Width;   //標簽左位置為當前控件寬度
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.timer2.Stop();
            this.timer1.Start();  //打開計時器
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.timer1.Stop(); //停止計時器
            this.timer2.Stop();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            this.timer1.Stop();
            this.timer2.Start();
        }

        private void timer2_Tick(object sender, EventArgs e)
        {
            this.label2.Left -= 8;  //向右移動3個像素
            if (this.label2.Right <0)
            {
                this.label2.Left = this.Width;   //標簽左位置為當前控件寬度
            }
        }
    }
}


 

效果:

\

 

 

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved