栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

C#实现窗体抖动的两种方法

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C#实现窗体抖动的两种方法

本文实例为大家分享了C#实现窗体抖动的具体代码,供大家参考,具体内容如下

原理:围绕中心点运动一圈

方法一:通过线程实现

需求:需要using System.Threading;命名空间和button按钮以及for循环

具体代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Threading;//添加线程

namespace Test_Window_jitter
{
 public partial class Form1 : Form
 {
  public Form1()
  {
   InitializeComponent();
  }

  private void Form1_Load(object sender, EventArgs e)
  {
   this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width/2-this.Width/2,Screen.PrimaryScreen.Bounds.Height/2-this.Height/2);
   button1.BackgroundImage = Image.FromFile("../../img/1.jpg");
   button1.BackgroundImageLayout = ImageLayout.Stretch;
  }

  private void button1_Click(object sender, EventArgs e)
  {
   int x = this.Left;
   int y = this.Top;
   for (int i = 0; i < 3; i++)
   {
    this.Location = new Point(x - 3, y);
    Thread.Sleep(10);//设置执行完上一步停留时间
    this.Location = new Point(x - 3, y - 3);
    Thread.Sleep(10);
    this.Location = new Point(x, y - 3);
    Thread.Sleep(10);
    this.Location = new Point(x + 3, y - 3);
    Thread.Sleep(10);
    this.Location = new Point(x + 3, y);
    Thread.Sleep(10);
    this.Location = new Point(x + 3, y + 3);
    Thread.Sleep(10);
    this.Location = new Point(x, y + 3);
    Thread.Sleep(10);
    this.Location = new Point(x - 3, y + 3);
    Thread.Sleep(10);
    this.Location = new Point(x - 3, y);
    Thread.Sleep(10);
    this.Location = new Point(x, y);
   }
  }
 }
}

方法二:通过计时器实现

需求:timer控件,button按钮,for循环

具体代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Test_Window_jitter
{
 public partial class Form2 : Form
 {
  public Form2()
  {
   InitializeComponent();
  }

  private void Form2_Load(object sender, EventArgs e)
  {
   this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width / 2 - this.Width / 2, Screen.PrimaryScreen.Bounds.Height / 2 - this.Height / 2);
  }

  private void button1_Click(object sender, EventArgs e)
  {
   timer1.Start();
  }

  private void timer1_Tick(object sender, EventArgs e)
  {
   int x = this.Left;
   int y = this.Top;
   for (int i = 0; i < 10; i++)
   {
    this.Location = new Point(x - 10, y);
    this.Location = new Point(x - 10, y - 10);
    this.Location = new Point(x, y - 10);
    this.Location = new Point(x + 10, y - 10);
    this.Location = new Point(x + 10, y);
    this.Location = new Point(x + 10, y + 10);
    this.Location = new Point(x, y + 10);
    this.Location = new Point(x - 10, y + 10);
    this.Location = new Point(x - 10, y);
    this.Location = new Point(x, y);
   }
   timer1.Stop();
  }
 }
}

看完记得点赞,下期更精彩!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/121640.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号