C#实现由四周向中心缩小的窗体退出特效
程序员文章站
2023-08-17 16:18:47
本文实例讲述了c#实现由四周向中心缩小的窗体退出特效。分享给大家供大家参考。具体实现方法如下:
public const int32 aw_center = 0x...
本文实例讲述了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#程序设计有所帮助。