创建Marquee于.NET窗口应用程序
本文关键字:窗口 应用程序 NET Marquee 创建 | 更新日期: 2023-09-27 17:58:23
我必须在中创建一个字幕。NET窗口应用程序。用C#做这件事最好的方法是什么?
以下是关于如何在C#中执行字幕的简单代码
private int xPos=0;
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
if (this.Width == xPos)
{
//repeat marquee
this.lblMarquee.Location = new System.Drawing.Point(0, 40);
xPos = 0;
}
else
{
this.lblMarquee.Location = new System.Drawing.Point(xPos, 40);
xPos++;
}
}
private void Form1_Load(object sender, EventArgs e)
{
timer1.Start();
}
只需放置一个ProgressBar
控件,并从设计器中将其Style
更改为Marquee
。您将立即看到动画。
如果您引用的是文本框,只需放置一个Label
控件并使用Timer类来增加标签的Location.X
属性。当X坐标等于控件的大小时,只需重置它并重新开始。
private void button_Click(object sender, EventArgs e)
{
int j = 100;
for (int i = 0; i < j; i++)
{
Thread.Sleep(5);
label3.Location = new System.Drawing.Point(0 + i, 111);
label3.Visible = true;
}
for (int i = j; i-- > 0; )
{
Thread.Sleep(15);
label3.Location = new System.Drawing.Point(0 + i, 111);
label3.Visible = true;
if (i < 1)
button_Click(sender, e);
}
}