使用WinForm怎么实现一个状态栏跑马灯效果-创新互联

这篇文章将为大家详细讲解有关使用WinForm怎么实现一个状态栏跑马灯效果,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

创新互联主要从事做网站、成都做网站、网页设计、企业做网站、公司建网站等业务。立足成都服务威海,10多年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:13518219792

具体如下:

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 WindowsFormsApplication1
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    private Label label = new Label();
    public string text = "csdn baihe_591";
    private void Form1_Load(object sender, EventArgs e)
    {
      this.label.Location = new Point(149, 13);
      this.label.Size = new Size(134, 16);
      this.Controls.Add(label);
      this.label.Text = "";
      this.timer1.Enabled = true;
      this.timer1.Interval = 500;
      p = new PointF(this.label.Size.Width, 0);
    }
    PointF p;
    Font f = new Font("宋体", 10);
    Color c = Color.White;
    string temp;
    private void timer1_Tick(object sender, EventArgs e)
    {
      Graphics g = this.label.CreateGraphics();
      SizeF s = new SizeF();
      s = g.MeasureString(text, f);//测量文字长度
      Brush brush = Brushes.Black;
      g.Clear(c);//清除背景
      if (temp != text)//文字改变时,重新显示
      {
        p = new PointF(this.label.Size.Width, 0);
        temp = text;
      }
      else
        p = new PointF(p.X - 10, 0);//每次偏移10
      if (p.X <= -s.Width)
        p = new PointF(this.label.Size.Width, 0);
      g.DrawString(text, f, brush, p);
    }
  }
}

关于使用WinForm怎么实现一个状态栏跑马灯效果就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


本文题目:使用WinForm怎么实现一个状态栏跑马灯效果-创新互联
浏览路径:http://myzitong.com/article/cocdej.html