熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

C#中實現文字在窗體中從左到右移動

2022-06-13   來源: .NET編程 

  程序開發步驟

  ()創建一個項目命名為_設置默認窗體的Text屬性為滾動文字

  ()在窗體上添加一個Label控件一個Timer控件設置Timer控件的Interval屬性為

  ()程序代碼如下

  private void timer_Tick(object sender EventArgs e)

  {

  程序開發步驟

  ()創建一個項目命名為_設置默認窗體的Text屬性為滾動文字

  ()在窗體上添加兩個Label控件一個Timer控件設置Timer控件的Interval屬性為

  ()程序代碼如下

  private void timer_Tick(object sender EventArgs e)

  {

  if (labelLeft < thisWidth)

  {

  labelLeft = labelLeft + ;

  }

  else if (labelLeft > thisWidth)

  {

  labelLeft = labelWidth;

  }

  }


From:http://tw.wingwit.com/Article/program/net/201311/13087.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.