用C#实现 label字体在windows窗体里飘动(碰到边反弹)

求增加一个button,按button时,label飘动速度增加的代码privatevoidbutton_Click(objectsender,EventArgse){(... 求增加一个button,按button时,label飘动速度增加的代码
private void button_Click(object sender, EventArgs e)
{
(求代码)
}
展开
 我来答
newman325
2012-03-29 · 超过32用户采纳过TA的回答
知道答主
回答量:71
采纳率:0%
帮助的人:77.2万
展开全部
让子弹飞啊 ,试试下面的:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
timer1.Tick += new EventHandler(timer1_Tick);
timer1.Interval = 10;
}

void timer1_Tick(object sender, EventArgs e)
{
if(label1.Location.X<label1.Parent.ClientRectangle.Width)
{
label1.Location = new Point(label1.Location.X + 2, label1.Location.Y);
}
else
{
label1.Location = new Point(0, label1.Location.Y);
}
Console.WriteLine("Location.X->" + label1.Location.X);
}

private void button1_Click(object sender, EventArgs e)
{
if (timer1.Enabled)
timer1.Enabled = false;
else
timer1.Enabled = true;
}
}
匿名用户
2012-03-29
展开全部
来你妹!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式