中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用WinForm怎么實現一個狀態欄跑馬燈效果

發布時間:2021-04-09 18:05:38 來源:億速云 閱讀:268 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關使用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;
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怎么實現一個狀態欄跑馬燈效果就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桃园县| 兴山县| 南康市| 清苑县| 临朐县| 多伦县| 镇赉县| 大埔县| 中江县| 舟曲县| 界首市| 定远县| 永年县| 土默特右旗| 招远市| 茌平县| 怀来县| 清水县| 嫩江县| 蓬安县| 阿坝| 清丰县| 乌审旗| 德阳市| 景宁| 大宁县| 大安市| 乌兰察布市| 博罗县| 宜宾县| 河南省| 永兴县| 海丰县| 抚远县| 科尔| 绥宁县| 兰西县| 秦安县| 松溪县| 巍山| 新乡市|