使用Label控件在c#winform中创建循环字幕文本

本文关键字:创建 循环 字幕 文本 c#winform Label 控件 使用 | 更新日期: 2023-09-27 18:16:25

我一直在使用标签控件创建Marquee文本,她是示例代码

public partial class FrmMarqueeText : Form
{
    private int xPos = 0, YPos = 0;
    public FrmMarqueeText()
    {
        InitializeComponent();
    }
    private void FrmMarqueeText_Load(object sender, EventArgs e)
    {
            lblText.Text = "Hello this is marquee text";
            xPos = lblText.Location.X;
            YPos = lblText.Location.Y;
            timer1.Start();

    }
    private void timer1_Tick(object sender, EventArgs e)
    {
        if (xPos == 0)
        {
            this.lblText.Location = new System.Drawing.Point(this.Width, YPos);
            xPos = this.Width;
        }
        else
        {
            this.lblText.Location = new System.Drawing.Point(xPos, YPos);
            xPos -= 2;
        }
    }

但当第一次完成时,它并没有继续工作。请帮帮我!

使用Label控件在c#winform中创建循环字幕文本

在时间r1_Tick-change

if (xPos == 0)

if (xPos <= 0)

否则,如果this.Width是奇数,它将不起作用。

我认为您需要检查xPos<=0。因为如果在xPos-=2之后xPos=1,则您的xPos将等于-1