码迷,mamicode.com
首页 > Windows程序 > 详细

winform窗体抖动

时间:2015-10-20 12:15:34      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

 private void button1_Click(object sender, EventArgs e)
    {
      //实现窗体抖动的效果
      Point first = this.Location;
      for (int i = 0; i < 50; i++)
      {
        Application.DoEvents();
        Random ran = new Random();
        Point p = new Point(this.Location.X + ran.Next(10) - 4, this.Location.Y +
            ran.Next(10) - 4);
        System.Threading.Thread.Sleep(10);//当前线程再挂起15毫秒
        this.Location = p;
        System.Threading.Thread.Sleep(10);//当前线程再挂起15毫秒
        Application.DoEvents();

      }
      this.Location = first;   //将窗体还原为原来的位置    
    }

 

winform窗体抖动

标签:

原文地址:http://www.cnblogs.com/Iyce/p/4894256.html

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