Dynamensions.ColorPicker.Maui
1.2.0
dotnet add package Dynamensions.ColorPicker.Maui --version 1.2.0
NuGet\Install-Package Dynamensions.ColorPicker.Maui -Version 1.2.0
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="Dynamensions.ColorPicker.Maui" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dynamensions.ColorPicker.Maui --version 1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Dynamensions.ColorPicker.Maui, 1.2.0"
#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.
// Install Dynamensions.ColorPicker.Maui as a Cake Addin #addin nuget:?package=Dynamensions.ColorPicker.Maui&version=1.2.0 // Install Dynamensions.ColorPicker.Maui as a Cake Tool #tool nuget:?package=Dynamensions.ColorPicker.Maui&version=1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Dynamensions Color Picker for .NET Maui
A simple to use ccolor picker. Add the control to your .NET Maui project and use the settings below.
- NumberOfColors - The number of colors you want to span the spectrum.
- Saturation - The saturation or vibrancce of the colors. Default is 0.99.
- Brightness - The brightness of the colors. Default is 0.99
- IsSorted - (not recommeded). Sorts the colors in the hue. Setting this item to true may start and end the colors on red.Default is false.
- Offset - The degree to offset the starting hue. Default is 0.
- Wrap - The wraping of the colors. Default is NoWrap.
- SelectedColor - A bindable property for the selected color.
How to use:
xmlns:colorPicker="clr-namespace:Dynamensions.ColorPicker.Maui;assembly=Dynamensions.ColorPicker.Maui"
<colorPicker:ColorPicker NumberOfColors="7"
Saturation="1"
Brightness="1"
Wrap="NoWrap"
IsSorted="False"
IncludeBlack="True"
IncludeWhite="True"
IncludeGrey="True"
SelectedColor="{Binding Path=MySelectedColor}" />
Notes:
IncludeBlack
,IncudeWhite
, andIncludeGrey
will add the corosponing color to the end of the colors.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0-android34.0 is compatible. net8.0-ios17.2 is compatible. net8.0-maccatalyst17.2 is compatible. net8.0-windows10.0.19041 is compatible. net9.0-android was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0-android34.0
- Dynamensions.ColorPalleteGenerator (>= 1.3.0)
- Microsoft.Maui.Controls (>= 8.0.7)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.7)
-
net8.0-ios17.2
- Dynamensions.ColorPalleteGenerator (>= 1.3.0)
- Microsoft.Maui.Controls (>= 8.0.7)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.7)
-
net8.0-maccatalyst17.2
- Dynamensions.ColorPalleteGenerator (>= 1.3.0)
- Microsoft.Maui.Controls (>= 8.0.7)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.7)
-
net8.0-windows10.0.19041
- Dynamensions.ColorPalleteGenerator (>= 1.3.0)
- Microsoft.Maui.Controls (>= 8.0.7)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- Added include black
- Added include grey
- Added include white
- Updated README