An open API service indexing awesome lists of open source software.

https://github.com/tabishrafiq/sharpcolorpicker

A beautiful C# windows form based modern color picker.
https://github.com/tabishrafiq/sharpcolorpicker

color color-picker csharp desktop dotnet-framework ui usercontrol windows-forms winform

Last synced: about 1 month ago
JSON representation

A beautiful C# windows form based modern color picker.

Awesome Lists containing this project

README

          

# SharpColorPicker
A beautiful C# Winform based modern color picker. The user control component comes up with the basic sliders that can be extended as per your needs as shown in the Test project.

![Preview](preview.png)

```
Install-Package SharpColorPicker
```

# How to use
Once the package is installed, picker color can be get or set using the Color attribute

```
private void sharpColorPicker1_ColorChanged(object sender, EventArgs e)
{
pictureBox1.BackColor = sharpColorPicker1.Color;
}
```

# Requirments
* .NET Framework 3.0 or later;
* Windows Forms.

# License

This project is licensed under MIT License

Copyright © 2018, [TabishRafiq](https://github.com/TabishRafiq)