实例介绍
一个用WPF实现的翻书效果的例子,其中的动态连接库可以重用。翻书的时候产生三阶贝塞尔曲线,平滑切换,效果逼真
【实例截图】
【核心代码】
wpfbookcontrol-24122
└── wpfbookcontrol-24122
├── Backup
│ ├── Bin
│ │ ├── de
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── es
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── fr
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── it
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── ja
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── ko
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── System.Web.Silverlight.dll.refresh
│ │ ├── zh-Hans
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ └── zh-Hant
│ │ └── System.Web.Silverlight.resources.dll
│ ├── BookDemoApp
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── BookDemoApp.csproj
│ │ ├── BookDemoApp_TemporaryKey.pfx
│ │ ├── CSharp 3.0 Specification.xps
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── UCAbout.xaml
│ │ ├── UCAbout.xaml.cs
│ │ ├── UCClippingTransparency.xaml
│ │ ├── UCClippingTransparency.xaml.cs
│ │ ├── UCClipping.xaml
│ │ ├── UCClipping.xaml.cs
│ │ ├── UCControls.xaml
│ │ ├── UCControls.xaml.cs
│ │ ├── UCCube.xaml
│ │ ├── UCCube.xaml.cs
│ │ ├── UCDataBindingTransformation.xaml
│ │ ├── UCDataBindingTransformation.xaml.cs
│ │ ├── UCFixedDocument.xaml
│ │ ├── UCFixedDocument.xaml.cs
│ │ ├── UCTheEnd.xaml
│ │ ├── UCTheEnd.xaml.cs
│ │ ├── UCTitle.xaml
│ │ ├── UCTitle.xaml.cs
│ │ ├── UCTriggers.xaml
│ │ ├── UCTriggers.xaml.cs
│ │ ├── UCXaml.xaml
│ │ ├── UCXaml.xaml.cs
│ │ ├── Window1.xaml
│ │ └── Window1.xaml.cs
│ ├── ClientBin
│ │ └── SLBookDemoApp.xap
│ ├── Silverlight.js
│ ├── SLBookDemoApp
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── ClientBin
│ │ │ ├── AppManifest.xaml
│ │ │ ├── SLBookDemoApp.dll
│ │ │ ├── SLBookDemoApp.pdb
│ │ │ ├── SLBookDemoApp.xap
│ │ │ ├── SLMitsuControls.dll
│ │ │ ├── SLMitsuControls.pdb
│ │ │ └── TestPage.html
│ │ ├── Page.xaml
│ │ ├── Page.xaml.cs
│ │ ├── Properties
│ │ │ ├── AppManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ ├── SLBookDemoApp.csproj
│ │ └── SLBookDemoApp.csproj.user
│ ├── SLBookDemoAppTestPage.aspx
│ ├── SLBookDemoAppTestPage.html
│ ├── SLMitsuControls
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── ClientBin
│ │ │ ├── AppManifest.xaml
│ │ │ ├── de
│ │ │ │ └── System.Xml.Linq.resources.dll
│ │ │ ├── es
│ │ │ │ └── System.Xml.Linq.resources.dll
│ │ │ ├── fr
│ │ │ │ └── System.Xml.Linq.resources.dll
│ │ │ ├── it
│ │ │ │ └── System.Xml.Linq.resources.dll
│ │ │ ├── ja
│ │ │ │ └── System.Xml.Linq.resources.dll
│ │ │ ├── ko
│ │ │ │ └── System.Xml.Linq.resources.dll
│ │ │ ├── SLMitsuControls.dll
│ │ │ ├── SLMitsuControls.pdb
│ │ │ ├── SLMitsuControls.xap
│ │ │ ├── System.Xml.Linq.dll
│ │ │ ├── System.Xml.Linq.xml
│ │ │ ├── TestPage.html
│ │ │ ├── zh-hans
│ │ │ │ └── System.Xml.Linq.resources.dll
│ │ │ └── zh-hant
│ │ │ └── System.Xml.Linq.resources.dll
│ │ ├── CornerOrigin.cs
│ │ ├── LinearGradientHelper.cs
│ │ ├── PageParameters.cs
│ │ ├── PageStatus.cs
│ │ ├── Properties
│ │ │ ├── AppManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ ├── SLMitsuControls.csproj
│ │ ├── SLMitsuControls.csproj.user
│ │ ├── UCBook.xaml
│ │ ├── UCBook.xaml.cs
│ │ ├── UCPage.Compute.cs
│ │ ├── UCPage.xaml
│ │ └── UCPage.xaml.cs
│ ├── web.config
│ ├── winappFlipPage.sln
│ └── WPFMitsuControls
│ ├── Book.cs
│ ├── BookPage.Compute.cs
│ ├── BookPage.xaml
│ ├── BookPage.xaml.cs
│ ├── Book.xaml
│ ├── CornerOrigin.cs
│ ├── LinearGradientHelper.cs
│ ├── PageParameters.cs
│ ├── PageStatus.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── WPFMitsuControls.csproj
├── BookDemoApp
│ ├── app.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── bin
│ │ └── Debug
│ │ ├── BookDemoApp.application
│ │ ├── BookDemoApp.exe
│ │ ├── BookDemoApp.exe.config
│ │ ├── BookDemoApp.exe.manifest
│ │ ├── BookDemoApp.pdb
│ │ ├── BookDemoApp.vshost.application
│ │ ├── BookDemoApp.vshost.exe
│ │ ├── BookDemoApp.vshost.exe.config
│ │ ├── BookDemoApp.vshost.exe.manifest
│ │ ├── CSharp 3.0 Specification.xps
│ │ ├── WPFMitsuControls.dll
│ │ └── WPFMitsuControls.pdb
│ ├── BookDemoApp.csproj
│ ├── BookDemoApp.csproj.user
│ ├── BookDemoApp.csproj.vspscc
│ ├── BookDemoApp_TemporaryKey.pfx
│ ├── CSharp 3.0 Specification.xps
│ ├── images
│ │ ├── roundcornersheet.png
│ │ ├── Star.png
│ │ └── Thumbs.db
│ ├── obj
│ │ └── Debug
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── BookDemoApp.application
│ │ ├── BookDemoApp_Content.g.cs
│ │ ├── BookDemoApp_Content.g.i.cs
│ │ ├── BookDemoApp.csproj.FileListAbsolute.txt
│ │ ├── BookDemoApp.exe
│ │ ├── BookDemoApp.exe.manifest
│ │ ├── BookDemoApp.g.resources
│ │ ├── BookDemoApp_MarkupCompile.cache
│ │ ├── BookDemoApp_MarkupCompile.i.cache
│ │ ├── BookDemoApp_MarkupCompile.i.lref
│ │ ├── BookDemoApp_MarkupCompile.lref
│ │ ├── BookDemoApp.pdb
│ │ ├── BookDemoApp.Properties.Resources.resources
│ │ ├── CSharp 3.0 Specification.xps
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── UCAbout.baml
│ │ ├── UCAbout.g.cs
│ │ ├── UCAbout.g.i.cs
│ │ ├── UCClipping.baml
│ │ ├── UCClipping.g.cs
│ │ ├── UCClipping.g.i.cs
│ │ ├── UCClippingTransparency.baml
│ │ ├── UCClippingTransparency.g.cs
│ │ ├── UCClippingTransparency.g.i.cs
│ │ ├── UCControls.baml
│ │ ├── UCControls.g.cs
│ │ ├── UCControls.g.i.cs
│ │ ├── UCCube.baml
│ │ ├── UCCube.g.cs
│ │ ├── UCCube.g.i.cs
│ │ ├── UCDataBindingTransformation.baml
│ │ ├── UCDataBindingTransformation.g.cs
│ │ ├── UCDataBindingTransformation.g.i.cs
│ │ ├── UCFixedDocument.baml
│ │ ├── UCFixedDocument.g.cs
│ │ ├── UCFixedDocument.g.i.cs
│ │ ├── UCTheEnd.baml
│ │ ├── UCTheEnd.g.cs
│ │ ├── UCTheEnd.g.i.cs
│ │ ├── UCTitle.baml
│ │ ├── UCTitle.g.cs
│ │ ├── UCTitle.g.i.cs
│ │ ├── UCTriggers.baml
│ │ ├── UCTriggers.g.cs
│ │ ├── UCTriggers.g.i.cs
│ │ ├── UCXaml.baml
│ │ ├── UCXaml.g.cs
│ │ ├── UCXaml.g.i.cs
│ │ ├── Window1.baml
│ │ ├── Window1.g.cs
│ │ └── Window1.g.i.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── UCAbout.xaml
│ ├── UCAbout.xaml.cs
│ ├── UCClippingTransparency.xaml
│ ├── UCClippingTransparency.xaml.cs
│ ├── UCClipping.xaml
│ ├── UCClipping.xaml.cs
│ ├── UCControls.xaml
│ ├── UCControls.xaml.cs
│ ├── UCCube.xaml
│ ├── UCCube.xaml.cs
│ ├── UCDataBindingTransformation.xaml
│ ├── UCDataBindingTransformation.xaml.cs
│ ├── UCFixedDocument.xaml
│ ├── UCFixedDocument.xaml.cs
│ ├── UCTheEnd.xaml
│ ├── UCTheEnd.xaml.cs
│ ├── UCTitle.xaml
│ ├── UCTitle.xaml.cs
│ ├── UCTriggers.xaml
│ ├── UCTriggers.xaml.cs
│ ├── UCXaml.xaml
│ ├── UCXaml.xaml.cs
│ ├── Window1.xaml
│ └── Window1.xaml.cs
├── CSharp 3.0 Specification.xps
├── SLBookDemoApp
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── obj
│ │ └── Debug
│ │ ├── App.g.cs
│ │ ├── build.force
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Page.g.cs
│ │ ├── ResolveAssemblyReference.cache
│ │ └── SLBookDemoApp.csproj.FileListAbsolute.txt
│ ├── Page.xaml
│ ├── Page.xaml.cs
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── SLBookDemoApp.csproj
│ ├── SLBookDemoApp.csproj.user
│ └── SLBookDemoApp.csproj.vspscc
├── SLMitsuControls
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── ClientBin
│ │ ├── manifest.xml
│ │ ├── SLBookControl.zip
│ │ └── System.Xml.Linq.dll
│ ├── CornerOrigin.cs
│ ├── LinearGradientHelper.cs
│ ├── obj
│ │ └── Debug
│ │ ├── App.g.cs
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── SLMitsuControls.csproj.FileListAbsolute.txt
│ │ ├── UCBook.g.cs
│ │ └── UCPage.g.cs
│ ├── PageParameters.cs
│ ├── PageStatus.cs
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── SLMitsuControls.csproj
│ ├── SLMitsuControls.csproj.user
│ ├── SLMitsuControls.csproj.vspscc
│ ├── UCBook.xaml
│ ├── UCBook.xaml.cs
│ ├── UCPage.Compute.cs
│ ├── UCPage.xaml
│ └── UCPage.xaml.cs
├── TestWebSite
│ ├── Bin
│ │ ├── de
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── es
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── fr
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── it
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── ja
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── ko
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ ├── System.Web.Silverlight.dll.refresh
│ │ ├── zh-Hans
│ │ │ └── System.Web.Silverlight.resources.dll
│ │ └── zh-Hant
│ │ └── System.Web.Silverlight.resources.dll
│ ├── ClientBin
│ │ └── SLBookDemoApp.xap
│ ├── Silverlight.js
│ ├── SLBookDemoAppTestPage.aspx
│ ├── SLBookDemoAppTestPage.html
│ └── web.config
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
├── winappFlipPage.sln
├── winappFlipPage.suo
├── winappFlipPage.vssscc
└── WPFMitsuControls
├── bin
│ └── Debug
│ ├── WPFMitsuControls.dll
│ └── WPFMitsuControls.pdb
├── Book.cs
├── BookPage.Compute.cs
├── BookPage.xaml
├── BookPage.xaml.cs
├── Book.xaml
├── CornerOrigin.cs
├── LinearGradientHelper.cs
├── obj
│ └── Debug
│ ├── Book.baml
│ ├── Book.g.cs
│ ├── Book.g.i.cs
│ ├── BookPage.baml
│ ├── BookPage.g.cs
│ ├── BookPage.g.i.cs
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GeneratedInternalTypeHelper.g.cs
│ ├── GeneratedInternalTypeHelper.g.i.cs
│ ├── GenerateResource.read.1.tlog
│ ├── GenerateResource.write.1.tlog
│ ├── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── WPFMitsuControls.csproj.FileListAbsolute.txt
│ ├── WPFMitsuControls.dll
│ ├── WPFMitsuControls.g.resources
│ ├── WPFMitsuControls_MarkupCompile.cache
│ ├── WPFMitsuControls_MarkupCompile.i.cache
│ ├── WPFMitsuControls_MarkupCompile.i.lref
│ ├── WPFMitsuControls_MarkupCompile.lref
│ ├── WPFMitsuControls.pdb
│ └── WPFMitsuControls.Properties.Resources.resources
├── PageParameters.cs
├── PageStatus.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── WPFMitsuControls.csproj
├── WPFMitsuControls.csproj.user
└── WPFMitsuControls.csproj.vspscc
66 directories, 325 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论