文字寫在label的caption屬性中,調(diào)用timer()函數(shù)
創(chuàng)新互聯(lián)擁有一支富有激情的企業(yè)網(wǎng)站制作團(tuán)隊(duì),在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)深耕10年,專業(yè)且經(jīng)驗(yàn)豐富。10年網(wǎng)站優(yōu)化營(yíng)銷經(jīng)驗(yàn),我們已為上千中小企業(yè)提供了成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、成都外貿(mào)網(wǎng)站建設(shè)解決方案,按需定制開發(fā),設(shè)計(jì)滿意,售后服務(wù)無(wú)憂。所有客戶皆提供一年免費(fèi)網(wǎng)站維護(hù)!
附上我寫的左右往復(fù)運(yùn)動(dòng)代碼,實(shí)現(xiàn)image1在picture1中左右往復(fù)運(yùn)動(dòng)
Private
Sub
Timer1_Timer()
If
Image1.Left
=
Picture1.ScaleWidth
-
Image1.Width
Then
k
=
1
If
k
=
1
Then
Image1.Left
=
Image1.Left
-
50
Else
Image1.Left
=
Image1.Left
+
50
End
If
If
Image1.Left
=
Then
k
=
End
Sub
最簡(jiǎn)單的,就是在上面放一個(gè)label,用Timer定時(shí)器控件控件這個(gè)label的移動(dòng)
private?void?button1_Click(object?sender,?EventArgs?e)
{
Timer?t?=?new?Timer();
t.Interval?=?50;
int?n?=?0;
int?w?=?this.label1.Width;
t.Tick?+=?(s,?ee)?=
{
n?+=?10;
int?d?=?this.Width?-?w;
this.label1.Left?=?n?%?d;
};
t.Start();
}