当前位置: 移动技术网 > IT编程>开发语言>c# > C#实现由四周向中心缩小的窗体退出特效

C#实现由四周向中心缩小的窗体退出特效

2019年07月18日  | 移动技术网IT编程  | 我要评论

本文实例讲述了c#实现由四周向中心缩小的窗体退出特效。分享给大家供大家参考。具体实现方法如下:

public const int32 aw_center = 0x00000010;
public const int32 aw_hide = 0x00010000;
[dllimport("user32.dll",charset=charset.auto)]
public static extern bool animatewindow(intptr hwnd, int dwtime, int dwflags);

form_closing调用:(同时使用aw_center和aw_hide标识)

复制代码 代码如下:
animatewindow(this.handle, 2000, aw_center | aw_hide);

希望本文所述对大家的c#程序设计有所帮助。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网