2

所以我有一个 2 形式的应用程序。您在当天的报价中输入的第一个表格,然后按一个按钮打开第二个表格,其中显示在标签中的文本。然后,您按下一个按钮,文本就会使用无限循环在屏幕上连续滚动。它显然会挂起程序。我希望能够让文本坐在那里滚动,直到有人想通过单击按钮或其他东西来停止它......我很确定你必须用线程来做,我只是新来的,不要真的很了解线程...这是我通过单击按钮调用的无限循环...

private void StartScroll()
    {
        System.Text.StringBuilder sb = new System.Text.StringBuilder(label2.Text + " ");

        while (true)
        {

            char ch = sb[0];
            sb.Remove(0, 1);
            sb.Insert( sb.Length , ch);
            label2.Text = sb.ToString();
            label2.Refresh();
            System.Threading.Thread.Sleep(100);


        }
    }

任何帮助表示赞赏!

4

3 回答 3

2

查看后台工作人员的此站点。它真的很容易实现,应该能够解决您的问题。

http://www.dotnetperls.com/backgroundworker

于 2013-06-17T22:56:28.443 回答
1

只需创建一个每 100 毫秒计时一次的计时器。例子:

//Create a new timer that ticks every 100ms
var t = new System.Timers.Timer (100);

//When a tick is elapsed
t.Elapsed+=(object sender, System.Timers.ElapsedEventArgs e) => 
{
   //what ever you want to do
};
//Start the timer
t.Start();
于 2013-06-17T22:57:09.933 回答
0

如果您需要在表单中滚动文本(如果我理解正确的话),您可以试试这个。TextSize 是文本的大小,x 表示表单的 x 轴,如果需要,您可以更改它。

System.Text.StringBuilder sb;
private int x,TextSize;

public Form1()
{
     InitializeComponent();

     sb = new System.Text.StringBuilder(label2.Text + " ");
     x = this.ClientRectangle.Width;
     TextSize = 16;
}

private void Button1_Click(object sender, EventArgs e)
{
    timer1.Tag = sb.ToString();
    timer1.Enabled = true;
}

void timer1_Tick(object sender, EventArgs e)
{
    Form1_Paint(this,null);
}

private void Form1_Paint(object sender, PaintEventArgs e)
{

     string str = timer1.Tag.ToString();
     Graphics g = Graphics.FromHwnd(this.Handle);
     g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
     g.FillRectangle(Brushes.Black, this.ClientRectangle);
     g.DrawString(str, new Font("Arial", TextSize), new SolidBrush(Color.White), x, 5);
     x -= 5;

     if (x <= str.Length * TextSize * -1)
         x = this.ClientRectangle.Width;

    }

并停止计时器

    private void Button2_Click(object sender, EventArgs e)
    {
        timer1.Enabled = false;
    }
于 2013-06-17T23:59:46.260 回答