通过调用API可以实现C#窗体的动画效果,主要调用user32.dll的行数AnimateWindow
1、函数申明
[System.Runtime.InteropServices.DllImport("user32")]
private static extern bool AnimateWindow(IntPtr hwnd, int dwTime, int dwFlags);
hwnd 界面上控件的句柄
dwTime 窗体特效执行的持续时间(单位毫秒)
dwFlags 窗体特效的值
2、dwFlags要传的参数是一些INT类型的常量
const int AW_HOR_POSITIVE = 0x0001; //正面_水平方向
const int AW_HOR_NEGATIVE = 0x0002;//负面_水平方向
const int AW_VER_POSITIVE = 0x0004; //正面_垂直方向
const int AW_VER_NEGATIVE = 0x0008;//负面_垂直方向
const int AW_CENTER = 0x0010;//由中间四周展开或由四周向中间缩小
const int AW_HIDE = 0x10000; //隐藏对象
const int AW_ACTIVATE = 0x20000;//显示对象
const int AW_SLIDE = 0x40000;//拉幕滑动效果
const int AW_BLEND = 0x80000;//淡入淡出渐变效果
3、调用,只要在窗体的Load事件里添加代码即可,比如:
AnimateWindow(this.Handle, 200, AW_BLEND );//即可实现淡入淡出渐变效果
时间: 2024-10-02 11:28:44