本文介绍了使用计时器移动文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

先生,

请告诉我如何使用计时器控件在Windows窗体中矩形移动文本.

Sir,

Please tell me how to move text rectangularly in a windows form using timer control.

推荐答案

if(count==1)
{
   txt_temp.Text="a";
   or,
   txt_temp.location=new point(x,y);
}
.
.
.
count++;


<pre>       private void timer1_Tick(object sender, EventArgs e)<br />
        {<br />
            label1.Left += 1;<br />
        }</pre>



这篇关于使用计时器移动文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-05 06:43