实例介绍
wpf 图片翻转特效 wpf 图片翻转特效
【实例截图】
【核心代码】
FluidKit.7z
└── FluidKit
├── FluidKit
│ ├── Controls
│ │ ├── BalloonDecorator.cs
│ │ ├── ElementFlow
│ │ │ ├── ElementFlow.cs
│ │ │ ├── ElementFlow.Internal.cs
│ │ │ ├── Viewport.xaml
│ │ │ └── ViewStates
│ │ │ ├── Carousel.cs
│ │ │ ├── CoverFlow.cs
│ │ │ ├── Motion.cs
│ │ │ ├── RollerCoaster.cs
│ │ │ ├── Rolodex.cs
│ │ │ ├── ThreeLane.cs
│ │ │ ├── TimeMachine2.cs
│ │ │ ├── TimeMachine.cs
│ │ │ ├── VForm.cs
│ │ │ └── ViewStateBase.cs
│ │ ├── GlassWindow.cs
│ │ ├── ImageButton.cs
│ │ ├── ItemSkimmingPanel.cs
│ │ ├── SkimmingContextAdorner.cs
│ │ ├── Transition
│ │ │ ├── CubeTransition.cs
│ │ │ ├── Cube.xaml
│ │ │ ├── FlipTransition.cs
│ │ │ ├── Genie
│ │ │ │ ├── GenieAnimation.cs
│ │ │ │ ├── GenieTransition.cs
│ │ │ │ ├── Genie.xaml
│ │ │ │ └── Point3DCollectionAnimationBase.cs
│ │ │ ├── SlideTransition.cs
│ │ │ ├── Transition.cs
│ │ │ ├── TransitionPresenter.cs
│ │ │ └── TransitionStoryboards.xaml
│ │ └── View3D
│ │ ├── Axis.cs
│ │ ├── MapItemVisual3D.cs
│ │ ├── Surfaces
│ │ │ ├── Cone.cs
│ │ │ ├── Cube.cs
│ │ │ ├── Cylinder.cs
│ │ │ ├── Sphere.cs
│ │ │ └── Torus.cs
│ │ └── View3DPresenter.cs
│ ├── Experimental
│ ├── FluidKit.csproj
│ ├── FluidKit.csproj.vspscc
│ ├── Helpers
│ │ ├── BezierEvaluator.cs
│ │ ├── BezierMeshFiller.cs
│ │ ├── DragDrop
│ │ │ ├── DragDropManager.cs
│ │ │ ├── DropPreviewAdorner.cs
│ │ │ ├── IDragSourceAdvisor.cs
│ │ │ └── IDropTargetAdvisor.cs
│ │ ├── LineEvaluator.cs
│ │ ├── MeshCreator.cs
│ │ ├── PennerAnimation
│ │ │ ├── PennerDoubleAnimation.cs
│ │ │ └── PennerInterpolator.cs
│ │ └── RectangularMeshFiller.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Shaders
│ │ ├── DynamicShaderEffect.cs
│ │ ├── DynamicShader.fx
│ │ ├── DynamicShader.ps
│ │ ├── WarpEffect.cs
│ │ ├── Warp.fx
│ │ └── Warp.ps
│ ├── Shapes
│ │ ├── CogwheelShape.cs
│ │ └── PolygonShape.cs
│ └── Themes
│ ├── Generic.xaml
│ ├── GlassWindow.generic.xaml
│ ├── ImageButton.generic.xaml
│ ├── images
│ │ ├── metal.jpg
│ │ ├── osx_close_hovered.png
│ │ ├── osx_close.png
│ │ ├── osx_close_pressed.png
│ │ ├── osx_max_hovered.png
│ │ ├── osx_max.png
│ │ ├── osx_max_pressed.png
│ │ ├── osx_min_hovered.png
│ │ ├── osx_min.png
│ │ ├── osx_min_pressed.png
│ │ ├── Vista_Background.design
│ │ ├── vista_buttons_glow.png
│ │ ├── vista_close_disabled.png
│ │ ├── vista_close_glow.png
│ │ ├── vista_close_hovered.png
│ │ ├── vista_close_only_hovered.png
│ │ ├── vista_close_only.png
│ │ ├── vista_close_only_pressed.png
│ │ ├── vista_close.png
│ │ ├── vista_close_pressed.png
│ │ ├── vista_max_disabled.png
│ │ ├── vista_max_hovered.png
│ │ ├── vista_max.png
│ │ ├── vista_max_pressed.png
│ │ ├── vista_min_disabled.png
│ │ ├── vista_min_hovered.png
│ │ ├── vista_min.png
│ │ ├── vista_min_pressed.png
│ │ ├── vista_restore_disabled.png
│ │ ├── vista_restore_hovered.png
│ │ ├── vista_restore.png
│ │ └── vista_restore_pressed.png
│ ├── MacOSXWindow.xaml
│ ├── Thumb.xaml
│ ├── TransitionPresenter.generic.xaml
│ └── VistaBackground.xaml
├── FluidKit.Showcase
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── DragDrop
│ │ ├── CanvasExample
│ │ │ ├── CanvasDragDropAdvisor.cs
│ │ │ ├── DragCanvasExample.xaml
│ │ │ └── DragCanvasExample.xaml.cs
│ │ ├── CrossApp
│ │ │ ├── clouds.png
│ │ │ ├── CrossAppAdvisor.cs
│ │ │ ├── CrossApp.xaml
│ │ │ └── CrossApp.xaml.cs
│ │ └── PanelExample
│ │ ├── DefaultDragSourceAdvisor.cs
│ │ ├── DefaultDropTargetAdvisor.cs
│ │ ├── PanelExample.xaml
│ │ └── PanelExample.xaml.cs
│ ├── ElementFlow
│ │ ├── Images
│ │ │ └── pics
│ │ │ ├── Icon (34).png
│ │ │ ├── Icon (35).png
│ │ │ ├── Icon (36).png
│ │ │ ├── Icon (37).png
│ │ │ ├── Icon (40).png
│ │ │ └── Icon (41).png
│ │ ├── StringCollection.cs
│ │ ├── Window1.xaml
│ │ └── Window1.xaml.cs
│ ├── FluidKit.Showcase.csproj
│ ├── FluidKit.Showcase.csproj.vspscc
│ ├── GlassWindow
│ │ ├── Window1.xaml
│ │ └── Window1.xaml.cs
│ ├── ItemSkimmingPanel
│ │ ├── Resources
│ │ │ └── Images
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 04.jpg
│ │ │ ├── 05.jpg
│ │ │ ├── 06.jpg
│ │ │ ├── 07.jpg
│ │ │ ├── 08.jpg
│ │ │ ├── 09.jpg
│ │ │ ├── 10.jpg
│ │ │ ├── 11.jpg
│ │ │ ├── 12.jpg
│ │ │ ├── 13.jpg
│ │ │ ├── 14.jpg
│ │ │ ├── 15.jpg
│ │ │ ├── 16.jpg
│ │ │ ├── 17.jpg
│ │ │ ├── 18.jpg
│ │ │ ├── 19.jpg
│ │ │ ├── 20.jpg
│ │ │ └── 21.jpg
│ │ ├── StringCollection.cs
│ │ ├── Window1.xaml
│ │ └── Window1.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── PennerDoubleAnimation
│ │ ├── PennerTester.xaml
│ │ └── PennerTester.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Shaders
│ │ ├── DynamicShaderTester.xaml
│ │ ├── DynamicShaderTester.xaml.cs
│ │ ├── img.jpg
│ │ ├── Window1.xaml
│ │ └── Window1.xaml.cs
│ ├── Shapes
│ │ ├── CustomShapes.cs
│ │ ├── CustomShapes_Resources.xaml
│ │ └── CustomShapes.xaml
│ ├── Transition
│ │ ├── Images
│ │ │ ├── img1.jpg
│ │ │ └── img2.jpg
│ │ ├── TransitionTester.xaml
│ │ └── TransitionTester.xaml.cs
│ └── View3D
│ ├── Window1.xaml
│ └── Window1.xaml.cs
├── FluidKit.sln
├── FluidKit.suo
├── FluidKit.vssscc
└── README.txt
37 directories, 179 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论