C#winform實現跑馬燈


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;
using System.Threading;
namespace WindowsFormsApplication1
{
    public partial class Form3 : Form
    {
        public Form3()
        {
            InitializeComponent();
        }
        delegate void show();
        Thread t=null;
        private void Form3_Load(object sender, EventArgs e)
        {
           t = new Thread(new ThreadStart(ShowLbl));
           t.Start();
        }
        public void ShowLbl()
        {
            while (true)
            {
                if (panel1.InvokeRequired)
                {
                    panel1.Invoke(new show(GetConfig));
                }
                Thread.Sleep(200);
            }
        }
        private void GetConfig()
        {
            try
            {
                this.label2.Text = "中國傳統文化博大精深,學習和掌握其中的各種思想精華,對樹立正確的世界觀、人生觀、價值觀很有益處。";
                this.label1.Text = "中國傳統文化博大精深,學習和掌握其中的各種思想精華,對樹立正確的世界觀、人生觀、價值觀很有益處。";
                this.label1.Left = label1.Left - 10;
                this.label2.Left = label1.Left + this.label1.Size.Width;
                if (label1.Left + label1.Size.Width <= 0) 
                {
                    label1.Left = label2.Left;
                    label2.Left = label1.Left + this.label1.Size.Width;
                }
            }
            catch (Exception ex)
            {
            }
        }
        private void Form3_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (t != null) 
            {
                t.Abort();
            }
        }
    }
}

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM