MaterialLibs 0.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package MaterialLibs --version 0.1.1
                    
NuGet\Install-Package MaterialLibs -Version 0.1.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MaterialLibs" Version="0.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MaterialLibs" Version="0.1.1" />
                    
Directory.Packages.props
<PackageReference Include="MaterialLibs" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MaterialLibs --version 0.1.1
                    
#r "nuget: MaterialLibs, 0.1.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MaterialLibs@0.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MaterialLibs&version=0.1.1
                    
Install as a Cake Addin
#tool nuget:?package=MaterialLibs&version=0.1.1
                    
Install as a Cake Tool

In Xaml: Suggestion:Use material:RippleHelper In LayoutRoot of Control Style or Template

    <Rectangle Width="200" Height="200" Fill="Gray" 
               material:RippleHelper.RippleDuration="0:0:0.3"  //Default value is 330 Milliseconds
               material:RippleHelper.RippleColor="{ThemeResource SystemBaseLowColor}"  //Must be set
               material:RippleHelper.RippleHelperState="Pressed"  //Must be set
               material:RippleHelper.RippleRadius="30"  //Set ripple radius
               //material:RippleHelper.IsFillEnable="True" //Default value is false
               //Only one of RippleRadius and IsFillEnable can be set
               />

In Cs: RippleHelper.RippleComplated is a static event

    RippleHelper.RippleComplated += RippleHelper_RippleComplated;

    private void RippleHelper_RippleComplated(object sender, EventArgs e)
    {
        if(sender == my_own_UIElement)
        {
            System.Diagnostics.Debug.WriteLine("Ripple Done!");
        }
    }
Product Compatible and additional computed target framework versions.
Universal Windows Platform uap was computed.  uap10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.31 1,214 10/1/2018
0.1.26 1,093 8/15/2018
0.1.14 1,161 7/24/2018
0.1.13 1,229 7/22/2018
0.1.11 1,354 7/7/2018
0.1.10 1,108 7/4/2018
0.1.9 1,120 7/2/2018
0.1.8 1,519 3/30/2018
0.1.6 1,391 3/26/2018
0.1.4 1,422 3/5/2018
0.1.3 1,489 3/5/2018
0.1.1 1,420 2/27/2018

仅支持Ripple。