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();
                }
            }
        }
    }
    

      

  • 相关阅读:
    top指令
    Trie
    最大公约数
    angular2 获取到的数据无法实时更新的问题
    npm install 的时候出现 write access 导致不能成功安装的问题
    angular 的 @Input、@Output 的一个用法
    windows 安装 apache 服务以及添加 php 解析
    php 性能优化之opcache
    intellij 插件结构(文件结构以及概念层面上的结构)
    jetBrains 插件开发第一课-- 在主菜单栏新增一个菜单
  • 原文地址:https://www.cnblogs.com/lgx5/p/9748434.html
Copyright © 2011-2022 走看看