├── .gitignore ├── DemoImages ├── AnimationHamburgerIcon.gif ├── CardView.gif ├── CustomTransition.gif ├── DraggedBadge.gif ├── ImplicitAnimation.gif ├── ParticleCanvas.gif ├── Perspective.png ├── Ripple.gif ├── TipsRectangleHelper-GridView.gif ├── TipsRectangleHelper-ListView.gif └── TipsRectangleHelper-Pivot.gif ├── LICENSE ├── MaterialLibs.sln ├── MaterialLibs ├── Assets │ └── RippleMask.png ├── Behaviors │ └── Transitions │ │ └── BackgroundTransitionBehavior.cs ├── Brushes │ ├── FluentAccentBrushes.xaml │ ├── FluentAccentBrushesResources.cs │ ├── FluentAccentColorBrush.cs │ ├── FluentBrushEvent.cs │ ├── FluentCompositeBrush.cs │ ├── FluentSolidColorBrush.cs │ └── IFluentBrush.cs ├── Common │ ├── ExtensionMethods.cs │ ├── VisualTreeExtension.cs │ └── WeakReferenceList.cs ├── Controls │ ├── AnimationHamburgerIcon.xaml │ ├── AnimationHamburgerIcon.xaml.cs │ ├── BigbangPanel.cs │ ├── BigbangView.cs │ ├── BigbangView.xaml │ ├── CardView.cs │ ├── CardView.xaml │ ├── DivideView.cs │ ├── DraggedBadge.cs │ ├── DraggedBadge.xaml │ ├── HamburgerView.cs │ ├── HamburgerView.xaml │ ├── HamburgerViewItem.cs │ ├── InnerShadow.cs │ ├── ParticleCanvas.xaml │ ├── ParticleCanvas.xaml.cs │ ├── SwipeBackView.cs │ ├── SwipeBackView.xaml │ ├── ToggleSwitcher.cs │ └── ToggleSwitcher.xaml ├── CustomTransitions │ ├── Bases │ │ ├── CustomTransitionBase.cs │ │ ├── CustomTransitionMode.cs │ │ ├── HideTransitionBase.cs │ │ └── ShowTransitionBase.cs │ ├── FlipHideTransition.cs │ ├── FlipShowTransition.cs │ ├── FlipTransitionMode.cs │ ├── OffsetHideTransition.cs │ ├── OffsetShowTransition.cs │ ├── OpacityHideTransition.cs │ ├── OpacityShowTransition.cs │ ├── ScaleHideTransition.cs │ └── ScaleShowTransition.cs ├── Factorys │ └── InnerShadowFactory.cs ├── Helpers │ ├── CoreSocialistValuesHelper.cs │ ├── ImplicitHelper.cs │ ├── RippleHelper.cs │ ├── ScrollGroupHelper.cs │ ├── TipsRectangleHelper.cs │ ├── TransitionsHelper.cs │ └── VisualHelper.cs ├── MaterialLibs.csproj ├── Models │ ├── DelayExpressionAnimationSource.cs │ ├── Particle.cs │ └── PointTracker.cs ├── Properties │ ├── AssemblyInfo.cs │ └── MaterialLibs.rd.xml └── Themes │ └── Generic.xaml ├── Readme.md └── Sample ├── App.xaml ├── App.xaml.cs ├── Assets ├── M_ICON.png ├── SplashScreen.scale-100.png ├── SplashScreen.scale-125.png ├── SplashScreen.scale-150.png ├── SplashScreen.scale-200.png ├── SplashScreen.scale-400.png ├── Square150x150Logo.scale-100.png ├── Square150x150Logo.scale-125.png ├── Square150x150Logo.scale-150.png ├── Square150x150Logo.scale-200.png ├── Square150x150Logo.scale-400.png ├── Square310x310Logo.scale-100.png ├── Square310x310Logo.scale-125.png ├── Square310x310Logo.scale-150.png ├── Square310x310Logo.scale-200.png ├── Square310x310Logo.scale-400.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-125.png ├── Square44x44Logo.scale-150.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.scale-400.png ├── Square71x71Logo.scale-100.png ├── Square71x71Logo.scale-125.png ├── Square71x71Logo.scale-150.png ├── Square71x71Logo.scale-200.png ├── Square71x71Logo.scale-400.png ├── StoreLogo.scale-100.png ├── StoreLogo.scale-125.png ├── StoreLogo.scale-150.png ├── StoreLogo.scale-200.png ├── StoreLogo.scale-400.png ├── Wide310x150Logo.scale-100.png ├── Wide310x150Logo.scale-125.png ├── Wide310x150Logo.scale-150.png ├── Wide310x150Logo.scale-200.png ├── Wide310x150Logo.scale-400.png └── imgs │ ├── 0.jpg │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── Converter └── RippleHelperStateConverter.cs ├── Factorys └── AppTitleBarFactory.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Models ├── ColorModel.cs ├── InformationModel.cs └── ListViewModel.cs ├── Package.appxmanifest ├── Package.xml ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Sample.csproj ├── Sample.csproj.user ├── Simple_TemporaryKey.pfx ├── Views ├── AboutPage.xaml ├── AboutPage.xaml.cs ├── BigbangPage.xaml ├── BigbangPage.xaml.cs ├── CardViewPage.xaml ├── CardViewPage.xaml.cs ├── DraggedBadgePage.xaml ├── DraggedBadgePage.xaml.cs ├── ImplicitAnimationPage.xaml ├── ImplicitAnimationPage.xaml.cs ├── ParticlePage.xaml ├── ParticlePage.xaml.cs ├── PerspectivePage.xaml ├── PerspectivePage.xaml.cs ├── RipplePage.xaml ├── RipplePage.xaml.cs ├── SwipeBackPage.xaml ├── SwipeBackPage.xaml.cs ├── TipsRectanglePage.xaml └── TipsRectanglePage.xaml.cs └── _pkginfo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/.gitignore -------------------------------------------------------------------------------- /DemoImages/AnimationHamburgerIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/AnimationHamburgerIcon.gif -------------------------------------------------------------------------------- /DemoImages/CardView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/CardView.gif -------------------------------------------------------------------------------- /DemoImages/CustomTransition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/CustomTransition.gif -------------------------------------------------------------------------------- /DemoImages/DraggedBadge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/DraggedBadge.gif -------------------------------------------------------------------------------- /DemoImages/ImplicitAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/ImplicitAnimation.gif -------------------------------------------------------------------------------- /DemoImages/ParticleCanvas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/ParticleCanvas.gif -------------------------------------------------------------------------------- /DemoImages/Perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/Perspective.png -------------------------------------------------------------------------------- /DemoImages/Ripple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/Ripple.gif -------------------------------------------------------------------------------- /DemoImages/TipsRectangleHelper-GridView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/TipsRectangleHelper-GridView.gif -------------------------------------------------------------------------------- /DemoImages/TipsRectangleHelper-ListView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/TipsRectangleHelper-ListView.gif -------------------------------------------------------------------------------- /DemoImages/TipsRectangleHelper-Pivot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/DemoImages/TipsRectangleHelper-Pivot.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/LICENSE -------------------------------------------------------------------------------- /MaterialLibs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs.sln -------------------------------------------------------------------------------- /MaterialLibs/Assets/RippleMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Assets/RippleMask.png -------------------------------------------------------------------------------- /MaterialLibs/Behaviors/Transitions/BackgroundTransitionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Behaviors/Transitions/BackgroundTransitionBehavior.cs -------------------------------------------------------------------------------- /MaterialLibs/Brushes/FluentAccentBrushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Brushes/FluentAccentBrushes.xaml -------------------------------------------------------------------------------- /MaterialLibs/Brushes/FluentAccentBrushesResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Brushes/FluentAccentBrushesResources.cs -------------------------------------------------------------------------------- /MaterialLibs/Brushes/FluentAccentColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Brushes/FluentAccentColorBrush.cs -------------------------------------------------------------------------------- /MaterialLibs/Brushes/FluentBrushEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Brushes/FluentBrushEvent.cs -------------------------------------------------------------------------------- /MaterialLibs/Brushes/FluentCompositeBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Brushes/FluentCompositeBrush.cs -------------------------------------------------------------------------------- /MaterialLibs/Brushes/FluentSolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Brushes/FluentSolidColorBrush.cs -------------------------------------------------------------------------------- /MaterialLibs/Brushes/IFluentBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Brushes/IFluentBrush.cs -------------------------------------------------------------------------------- /MaterialLibs/Common/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Common/ExtensionMethods.cs -------------------------------------------------------------------------------- /MaterialLibs/Common/VisualTreeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Common/VisualTreeExtension.cs -------------------------------------------------------------------------------- /MaterialLibs/Common/WeakReferenceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Common/WeakReferenceList.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/AnimationHamburgerIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/AnimationHamburgerIcon.xaml -------------------------------------------------------------------------------- /MaterialLibs/Controls/AnimationHamburgerIcon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/AnimationHamburgerIcon.xaml.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/BigbangPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/BigbangPanel.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/BigbangView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/BigbangView.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/BigbangView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/BigbangView.xaml -------------------------------------------------------------------------------- /MaterialLibs/Controls/CardView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/CardView.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/CardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/CardView.xaml -------------------------------------------------------------------------------- /MaterialLibs/Controls/DivideView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/DivideView.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/DraggedBadge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/DraggedBadge.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/DraggedBadge.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/DraggedBadge.xaml -------------------------------------------------------------------------------- /MaterialLibs/Controls/HamburgerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/HamburgerView.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/HamburgerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/HamburgerView.xaml -------------------------------------------------------------------------------- /MaterialLibs/Controls/HamburgerViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/HamburgerViewItem.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/InnerShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/InnerShadow.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/ParticleCanvas.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/ParticleCanvas.xaml -------------------------------------------------------------------------------- /MaterialLibs/Controls/ParticleCanvas.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/ParticleCanvas.xaml.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/SwipeBackView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/SwipeBackView.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/SwipeBackView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/SwipeBackView.xaml -------------------------------------------------------------------------------- /MaterialLibs/Controls/ToggleSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/ToggleSwitcher.cs -------------------------------------------------------------------------------- /MaterialLibs/Controls/ToggleSwitcher.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Controls/ToggleSwitcher.xaml -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/Bases/CustomTransitionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/Bases/CustomTransitionBase.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/Bases/CustomTransitionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/Bases/CustomTransitionMode.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/Bases/HideTransitionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/Bases/HideTransitionBase.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/Bases/ShowTransitionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/Bases/ShowTransitionBase.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/FlipHideTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/FlipHideTransition.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/FlipShowTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/FlipShowTransition.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/FlipTransitionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/FlipTransitionMode.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/OffsetHideTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/OffsetHideTransition.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/OffsetShowTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/OffsetShowTransition.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/OpacityHideTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/OpacityHideTransition.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/OpacityShowTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/OpacityShowTransition.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/ScaleHideTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/ScaleHideTransition.cs -------------------------------------------------------------------------------- /MaterialLibs/CustomTransitions/ScaleShowTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/CustomTransitions/ScaleShowTransition.cs -------------------------------------------------------------------------------- /MaterialLibs/Factorys/InnerShadowFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Factorys/InnerShadowFactory.cs -------------------------------------------------------------------------------- /MaterialLibs/Helpers/CoreSocialistValuesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Helpers/CoreSocialistValuesHelper.cs -------------------------------------------------------------------------------- /MaterialLibs/Helpers/ImplicitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Helpers/ImplicitHelper.cs -------------------------------------------------------------------------------- /MaterialLibs/Helpers/RippleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Helpers/RippleHelper.cs -------------------------------------------------------------------------------- /MaterialLibs/Helpers/ScrollGroupHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Helpers/ScrollGroupHelper.cs -------------------------------------------------------------------------------- /MaterialLibs/Helpers/TipsRectangleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Helpers/TipsRectangleHelper.cs -------------------------------------------------------------------------------- /MaterialLibs/Helpers/TransitionsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Helpers/TransitionsHelper.cs -------------------------------------------------------------------------------- /MaterialLibs/Helpers/VisualHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Helpers/VisualHelper.cs -------------------------------------------------------------------------------- /MaterialLibs/MaterialLibs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/MaterialLibs.csproj -------------------------------------------------------------------------------- /MaterialLibs/Models/DelayExpressionAnimationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Models/DelayExpressionAnimationSource.cs -------------------------------------------------------------------------------- /MaterialLibs/Models/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Models/Particle.cs -------------------------------------------------------------------------------- /MaterialLibs/Models/PointTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Models/PointTracker.cs -------------------------------------------------------------------------------- /MaterialLibs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MaterialLibs/Properties/MaterialLibs.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Properties/MaterialLibs.rd.xml -------------------------------------------------------------------------------- /MaterialLibs/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/MaterialLibs/Themes/Generic.xaml -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Readme.md -------------------------------------------------------------------------------- /Sample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/App.xaml -------------------------------------------------------------------------------- /Sample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/App.xaml.cs -------------------------------------------------------------------------------- /Sample/Assets/M_ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/M_ICON.png -------------------------------------------------------------------------------- /Sample/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Sample/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Sample/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Sample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Sample/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Sample/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Sample/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Sample/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Sample/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Sample/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Sample/Assets/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /Sample/Assets/Square310x310Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square310x310Logo.scale-125.png -------------------------------------------------------------------------------- /Sample/Assets/Square310x310Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square310x310Logo.scale-150.png -------------------------------------------------------------------------------- /Sample/Assets/Square310x310Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square310x310Logo.scale-200.png -------------------------------------------------------------------------------- /Sample/Assets/Square310x310Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square310x310Logo.scale-400.png -------------------------------------------------------------------------------- /Sample/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Sample/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Sample/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Sample/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Sample/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Sample/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /Sample/Assets/Square71x71Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square71x71Logo.scale-125.png -------------------------------------------------------------------------------- /Sample/Assets/Square71x71Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square71x71Logo.scale-150.png -------------------------------------------------------------------------------- /Sample/Assets/Square71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square71x71Logo.scale-200.png -------------------------------------------------------------------------------- /Sample/Assets/Square71x71Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Square71x71Logo.scale-400.png -------------------------------------------------------------------------------- /Sample/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Sample/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Sample/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Sample/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Sample/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Sample/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Sample/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Sample/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Sample/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Sample/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Sample/Assets/imgs/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/0.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/1.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/10.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/11.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/12.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/13.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/14.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/15.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/16.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/17.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/18.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/19.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/2.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/3.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/4.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/5.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/6.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/7.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/8.jpg -------------------------------------------------------------------------------- /Sample/Assets/imgs/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Assets/imgs/9.jpg -------------------------------------------------------------------------------- /Sample/Converter/RippleHelperStateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Converter/RippleHelperStateConverter.cs -------------------------------------------------------------------------------- /Sample/Factorys/AppTitleBarFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Factorys/AppTitleBarFactory.cs -------------------------------------------------------------------------------- /Sample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/MainPage.xaml -------------------------------------------------------------------------------- /Sample/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/MainPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Models/ColorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Models/ColorModel.cs -------------------------------------------------------------------------------- /Sample/Models/InformationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Models/InformationModel.cs -------------------------------------------------------------------------------- /Sample/Models/ListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Models/ListViewModel.cs -------------------------------------------------------------------------------- /Sample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Package.appxmanifest -------------------------------------------------------------------------------- /Sample/Package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Package.xml -------------------------------------------------------------------------------- /Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Sample/Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Sample.csproj -------------------------------------------------------------------------------- /Sample/Sample.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Sample.csproj.user -------------------------------------------------------------------------------- /Sample/Simple_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Simple_TemporaryKey.pfx -------------------------------------------------------------------------------- /Sample/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/AboutPage.xaml -------------------------------------------------------------------------------- /Sample/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/BigbangPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/BigbangPage.xaml -------------------------------------------------------------------------------- /Sample/Views/BigbangPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/BigbangPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/CardViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/CardViewPage.xaml -------------------------------------------------------------------------------- /Sample/Views/CardViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/CardViewPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/DraggedBadgePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/DraggedBadgePage.xaml -------------------------------------------------------------------------------- /Sample/Views/DraggedBadgePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/DraggedBadgePage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/ImplicitAnimationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/ImplicitAnimationPage.xaml -------------------------------------------------------------------------------- /Sample/Views/ImplicitAnimationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/ImplicitAnimationPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/ParticlePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/ParticlePage.xaml -------------------------------------------------------------------------------- /Sample/Views/ParticlePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/ParticlePage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/PerspectivePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/PerspectivePage.xaml -------------------------------------------------------------------------------- /Sample/Views/PerspectivePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/PerspectivePage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/RipplePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/RipplePage.xaml -------------------------------------------------------------------------------- /Sample/Views/RipplePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/RipplePage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/SwipeBackPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/SwipeBackPage.xaml -------------------------------------------------------------------------------- /Sample/Views/SwipeBackPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/SwipeBackPage.xaml.cs -------------------------------------------------------------------------------- /Sample/Views/TipsRectanglePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/TipsRectanglePage.xaml -------------------------------------------------------------------------------- /Sample/Views/TipsRectanglePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/Views/TipsRectanglePage.xaml.cs -------------------------------------------------------------------------------- /Sample/_pkginfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbluefire/MaterialLibs/HEAD/Sample/_pkginfo.txt --------------------------------------------------------------------------------