请教有没有好的界面切换或者图片切换效果的代码,winform的

请问有没有好的界面切换或者图片切换效果的代码,winform的
请问有没有好的界面切换或者图片切换效果的代码,winform的

类似于wpf的

http://transitionals.codeplex.com/ 这样的效果。

网上找到过一个clayui的,但是在界面放大的时候,特别卡。

windows api 里有个简单的功能切换,能实现的切换效果不多。

请问各位大侠是否有界面切换或者图片切换效果的代码。支持多种切换效果的。谢谢了





------解决方案--------------------
dotnetbar
------解决方案--------------------
VB.NET的仿手机的滑屏缩放的要不要,要的话晚上给你.
------解决方案--------------------
你可以调用WindowsAPI,下面是一个例子,你试试。
在这个例子的基础上,你可以通过Timer或者控制Form的透明度来实现你想要的效果。


[System.Runtime.InteropServices.DllImport("user32")]
        private static extern bool AnimateWindow(IntPtr hwnd, int dwTime, int dwFlags);
        private const int AW_HOR_POSITIVE = 0x0001;//从左向右显示
        private const int AW_HOR_NEGATIVE = 0x0002;//从右向左显示
        private const int AW_VER_POSITIVE = 0x0004;//从上到下显示
        private const int AW_VER_NEGATIVE = 0x0008;//从下到上显示
        private const int AW_CENTER = 0x0010;//从中间向四周
        private const int AW_HIDE = 0x10000;
        private const int AW_ACTIVATE = 0x20000;//普通显示
        private const int AW_SLIDE = 0x40000;
        private const int AW_BLEND = 0x80000;//透明渐变显示

        private void Form1_Load(object sender, EventArgs e)
        {
            int animatetype = 10;
            Random a = new Random();
            int dwFlags = (int)a.Next(animatetype);
            switch (dwFlags)
            {
                case 0://普通显示
                    AnimateWindow(Handle, 1000, AW_ACTIVATE);
                    break;
                case 1://从左向右显示
                    AnimateWindow(Handle, 1000, AW_HOR_POSITIVE);
                    break;
                case 2://从右向左显示
                    AnimateWindow(Handle, 1000, AW_HOR_NEGATIVE);
                    break;
                case 3://从上到下显示
                    AnimateWindow(Handle, 1000, AW_VER_POSITIVE);
                    break;
                case 4://从下到上显示
                    AnimateWindow(Handle, 1000, AW_VER_NEGATIVE);
                    break;
                case 5://透明渐变显示
                    AnimateWindow(Handle, 1000, AW_BLEND);
                    break;
                case 6://从中间向四周
                    AnimateWindow(Handle, 1000, AW_CENTER);
                    break;
                case 7://左上角伸展
                    AnimateWindow(Handle, 1000, AW_SLIDE