手机
当前位置:查字典教程网 >编程开发 >C#教程 >桌面浮动窗口(类似恶意广告)的实现详解
桌面浮动窗口(类似恶意广告)的实现详解
摘要:突然想起来flash有碰撞反弹飘动as控制的效果,所以想起来用c#也来做一个桌面飘动碰撞反弹无标题栏窗体。有点像中了恶意病毒广告效果。主要代...

突然想起来flash有碰撞反弹飘动as控制的效果,所以想起来用c#也来做一个桌面飘动碰撞反弹无标题栏窗体。有点像中了恶意病毒广告效果。

主要代码如下(使用了一timer控件和一Button(为了我自己控制),窗体的BorderStyle设置为None):

复制代码 代码如下:

int ScreenWidth = SystemInformation.PrimaryMonitorMaximizedWindowSize.Width;

int ScreenHeight = SystemInformation.PrimaryMonitorMaximizedWindowSize.Height;

private int speedX = 4;

private int speedY = 3;

private bool canMove = true;

int myswitch = 1;//为了我可以控制停止所以添加的飘与停的切换开关

private void timer1_Tick(object sender, EventArgs e)

{

if (canMove)

{

this.DesktopLocation = new Point(this.DesktopLocation.X + speedX, this.DesktopLocation.Y + speedY);

if (this.DesktopLocation.X + this.Width >= ScreenWidth || this.DesktopLocation.X < 0)

{

speedX = -speedX;

}

if (this.DesktopLocation.Y + this.Height >= ScreenHeight || this.DesktopLocation.Y < 0)

{

speedY = -speedY;

}

}

}

private void button1_Click(object sender, EventArgs e)

{

myswitch *= -1;

if (myswitch == -1)

{

canMove = false;

//button1.Text = "飘动";

}

else

{

canMove = true;

//button1.Text = "停止";

}

}

private void Form1_Load(object sender, EventArgs e)

{

}

private void Form1_DoubleClick(object sender, EventArgs e)

{

Application.Exit();

}

暂写这么多,有时间把它再增强下更像恶意广告。~

【桌面浮动窗口(类似恶意广告)的实现详解】相关文章:

C#最简单的关闭子窗体更新父窗体的实现方法

C#截图程序类似腾讯QQ截图实现代码

深入C# 内存管理以及优化的方法详解

程序中两个Double类型相加出现误差的解决办法

c# 托盘双击不触发单击事件的实现方法

解决C#获取鼠标相对当前窗口坐标的实现方法

C# char类型字符转换大小写的实现代码

深入委托与多播委托的详解

基于反射解决类复制的实现方法

深入理解C#序列化与反序列化的详解

精品推荐
分类导航