让label从左到右移动。然后循环,就一直从左到右移动,该怎么弄

解决方案 »

  1.   

    查下属性。我现在手上没有MSDN,帮不了你。
      

  2.   

    http://zhidao.baidu.com/question/112681311.html
      

  3.   

     private void timer1_Tick(object sender, System.EventArgs e)
            {
                Point p = new Point(this.DesktopLocation.X + 1, this.DesktopLocation.Y);
                this.DesktopLocation = p;
                if (p.X == this.DesktopBounds.Width)
                {
                    Point p2 = new Point(0,370);
                    this.DesktopLocation = p2;
                }
            }        private void Form1_Load(object sender, System.EventArgs e)
            {
                Point p = new Point(0,370);
                this.DesktopLocation = p ;
            }给你个类似的例子,利用TIMER控件