请问,如何让lable里的字体 无缝隙滚动???在winform里!谢谢

解决方案 »

  1.   

    private void timer1_Tick(object sender, EventArgs e)
            {
                this.label1.Text = this.strinfo.Substring(1, this.strinfo.Length-1) + strinfo.Substring(0, 1);
                strinfo = this.label1.Text;        }??
      

  2.   

    timer的 tick 事件在哪儿?我怎么没找着
    还有我运行你的代码 怎么出来,并不包含对 strinfo 的定义呐?