zoukankan      html  css  js  c++  java
  • 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();
                }
            }
        }
    }
    

      

  • 相关阅读:
    在Eclipse里连接Tomcat部署到项目(maven项目和web项目都适用)
    Eclipse里Tomcat报错:Document base ……does not exist or is not a readable directory(图文详解)
    Automatic logon configuration on Linux OS
    uva 10655
    CentOS6.5与window远程桌面配置
    operator= 复制操作符的意外
    Window平台搭建Redis分布式缓存集群 (一)server搭建及性能測试
    安卓自己定义日历控件
    详解2进制,10进制,16进制,8进制,36进制
    HDU 1394 Minimum Inversion Number (线段树 单点更新 求逆序数)
  • 原文地址:https://www.cnblogs.com/lgx5/p/9748434.html
Copyright © 2011-2022 走看看