textbox能实现,控制滚动高度就可以了。

解决方案 »

  1.   

    textBox可以实现
    有一个ScrollBars的属性控制滚动条
      

  2.   

    不是的
    是自动滚动的
    只是滚动条不够的
    而且怎么用Timer控制呢?
      

  3.   

            public void timer_Tick(object sender, EventArgs e)
            {
                if (Label1.Location.X == 0) 
                    Label1Direction = true;            if (Label1.Location.X + Label1.Width == this.Width) 
                    Label1Direction = false;            if (RaceFootDirection)
                {
                    Label1.Location = new Point(Label1.Location.X + 1, Label1.Location.Y);
                }
                else
                {
                    Label1.Location = new Point(Label1.Location.X - 1, Label1.Location.Y);
                }
            }
      

  4.   

            public void timer_Tick(object sender, EventArgs e)
            {
                if (Label1.Location.X == 0) 
                    Label1Direction = true;            if (Label1.Location.X + Label1.Width == this.Width) 
                    Label1Direction = false;            if (Label1Direction)
                {
                    Label1.Location = new Point(Label1.Location.X + 1, Label1.Location.Y);
                }
                else
                {
                    Label1.Location = new Point(Label1.Location.X - 1, Label1.Location.Y);
                }
            }