c#实现对方窗口抖动该怎么做?

求具体代码... 求具体代码 展开
 我来答
Sxzy灬丨小柒
2014-11-03 · TA获得超过623个赞
知道小有建树答主
回答量:1223
采纳率:50%
帮助的人:281万
展开全部

//此代码要写在Timer里.已测试好使,你可以把Timer的触发时间设置为2秒看一下效果.

private void timer1_Tick(object sender, EventArgs e)
        {
            this.Location = new Point(this.Location.X + 10, this.Location.Y);
            Thread.Sleep(50);
            this.Location = new Point(this.Location.X - 10, this.Location.Y);
            Thread.Sleep(50);
            this.Location = new Point(this.Location.X + 10, this.Location.Y);
            Thread.Sleep(50);
            this.Location = new Point(this.Location.X - 10, this.Location.Y);
            Thread.Sleep(50);
            this.Location = new Point(this.Location.X + 5, this.Location.Y);
        }

追问
前面的命名空间要加什么吗,运行不来啊,或者你把什么命名的是 new point
追答
using System.Threading;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式