码迷,mamicode.com
首页 > 其他好文 > 详细

屏幕抖动一 下

时间:2014-06-11 12:38:07      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:ext   for   window   new   io   read   

        private void ShakeWindow()
        {
            Random ran = new Random();
            System.Drawing.Point point = this.Location;
            for (int i = 0; i < 30; i++)
            {
                this.Location = new System.Drawing.Point(point.X + ran.Next(8), point.Y + ran.Next(8));
                System.Threading.Thread.Sleep(15);
                this.Location = point;
                System.Threading.Thread.Sleep(15);
            }
        }

屏幕抖动一 下,布布扣,bubuko.com

屏幕抖动一 下

标签:ext   for   window   new   io   read   

原文地址:http://www.cnblogs.com/haofaner/p/3772636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!