• 【C#】窗体动画效果


    通过调用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 );//即可实现淡入淡出渐变效果

  • 相关阅读:
    区块链中的密码学
    初识nodeJS
    JS或jQuery获取当前屏幕宽度
    jQuery与Zepto的异同
    使用递归解决斐波那契数列的性能问题
    sass高级语法的补充
    sass的高级语法
    栅格 CSS中的循环 媒体查询
    Zepto
    dedecms 留言板中引用模板文件方法
  • 原文地址:https://www.cnblogs.com/mqxs/p/4741280.html
Copyright © 2020-2023  润新知