Dirkster.ColorPickerLib 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Dirkster.ColorPickerLib --version 1.1.0
NuGet\Install-Package Dirkster.ColorPickerLib -Version 1.1.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="Dirkster.ColorPickerLib" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dirkster.ColorPickerLib --version 1.1.0
#r "nuget: Dirkster.ColorPickerLib, 1.1.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 Dirkster.ColorPickerLib as a Cake Addin
#addin nuget:?package=Dirkster.ColorPickerLib&version=1.1.0

// Install Dirkster.ColorPickerLib as a Cake Tool
#tool nuget:?package=Dirkster.ColorPickerLib&version=1.1.0

Build status Release NuGet

ColorPickerLib

A WPF/MVVM implementation of a themeable color picker control.

<table> <tr> <td> <img src="https://github.com/Dirkster99/Docu/blob/master/ColorPickerLib/MetroDarkColorPicker.png"> </td> <td> <img src="https://github.com/Dirkster99/Docu/blob/master/ColorPickerLib/MetroColorPicker.png"> </td> </tr> </table>

alternate text is missing from this package README image

Project Description

This project implements a Color Picker control using MVVM/Windows Presentation Foundation (WPF) pattern and technology. that can be themed and localized.

You can test these controls with the demo application provided in this repository or in a sample application:

Features

This version of the control implements:

  • a few bug fixes (eg.: you cannot enter letters or more than 3 digits in a channel input element).

Supports localization for:

  • Chinese (Simplified) and Chinese (Traditional)
  • Dutch
  • English
  • French
  • German
  • Hindi
  • Indonesian
  • Italian
  • Japanese
  • Spanish

These 4 styles have to be included to avoid a transparent background in the pop-up control:

    
    <SolidColorBrush x:Key="PopupBackgroundBrush"  Color="#FF252526" />
    
    
    <SolidColorBrush x:Key="PopupDarkBorderBrush" Color="#FFABADB3" />
    
    
    
    
    
    <DrawingBrush  x:Key="CheckerBrush" Viewport="0,0,10,10" ViewportUnits="Absolute" TileMode="Tile">
        <DrawingBrush.Drawing>
            <DrawingGroup>
                <GeometryDrawing Brush="White">
                    <GeometryDrawing.Geometry>
                        <RectangleGeometry Rect="0,0 100,100" />
                    </GeometryDrawing.Geometry>
                </GeometryDrawing>
                <GeometryDrawing Brush="LightGray">
                    <GeometryDrawing.Geometry>
                        <GeometryGroup>
                            <RectangleGeometry Rect="0,0 50,50" />
                            <RectangleGeometry Rect="50,50 50,50" />
                        </GeometryGroup>
                    </GeometryDrawing.Geometry>
                </GeometryDrawing>
            </DrawingGroup>
        </DrawingBrush.Drawing>
    </DrawingBrush>
    
    <SolidColorBrush x:Key="ColorPickerDarkBorderBrush" Color="Black" />

Theming

Load Light or Dark brush resources in you resource dictionary to take advantage of existing definitions.

    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/ColorPickerLib;component/Themes/DarkBrushs.xaml" />
    </ResourceDictionary.MergedDictionaries>
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/ColorPickerLib;component/Themes/LightBrushs.xaml" />
    </ResourceDictionary.MergedDictionaries>

These definitions do not theme all controls used within this library. You should use a standard theming library, such as:

to also theme standard elements, such as, button and textblock etc.

References

This project implements a WPF Color Picker control.

The project is based on:

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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 (1)

Showing the top 1 popular GitHub repositories that depend on Dirkster.ColorPickerLib:

Repository Stars
Dirkster99/AvalonDock
Our own development branch of the well known WPF document docking library
Version Downloads Last updated
1.6.2 28,763 11/13/2020
1.6.0 85,843 9/3/2019
1.5.1 1,593 2/28/2019
1.5.0 1,299 8/28/2018
1.4.0.1 905 8/19/2018
1.3.0 831 8/17/2018
1.1.0 807 8/16/2018
1.0.0 1,217 9/13/2017

Minimal required .Net Version is 4.0.