All Projects → Dirkster99 → ColorPickerLib

Dirkster99 / ColorPickerLib

Licence: MIT license
A WPF/MVVM implementation of a themeable color picker control.

Programming Languages

C#
18002 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to ColorPickerLib

Avalondock
Our own development branch of the well known WPF document docking library
Stars: ✭ 518 (+1077.27%)
Mutual labels:  light, light-theme, control, dark-theme, wpf
NumericUpDownLib
Implements numeric up down WPF controls to edit/display values (byte, integer, short, ushort etc.) with a textbox and optional up/down arrow (repeat) buttons. Value editing is possible by dragging the mouse vertically/horizontally, clicking up/down buttons, using up/down or left right cursor keys, spinning mousewheel on mouseover, or editing th…
Stars: ✭ 68 (+54.55%)
Mutual labels:  light, light-theme, control, dark-theme
Handycontrols
Contains some simple and commonly used WPF controls based on HandyControl
Stars: ✭ 347 (+688.64%)
Mutual labels:  control, dark-theme, color-picker, wpf
ColorPicker
Customizable Color Picker control for WPF
Stars: ✭ 57 (+29.55%)
Mutual labels:  control, color-picker, wpf
Handycontrol
Contains some simple and commonly used WPF controls
Stars: ✭ 3,349 (+7511.36%)
Mutual labels:  control, color-picker, wpf
fsc
A set of themeable WPF File System Controls similar to some parts of Windows (7-10) Explorer
Stars: ✭ 66 (+50%)
Mutual labels:  light-theme, dark-theme, wpf
vscode-theme-gruvbox-minor
Gruvbox theme for Visual Studio Code
Stars: ✭ 17 (-61.36%)
Mutual labels:  light, light-theme, dark-theme
hexagonTab
Hexagon bookmarks accented with a chosen colour. Customise the layout, style, background and bookmarks with hexagonTab.
Stars: ✭ 65 (+47.73%)
Mutual labels:  light, light-theme, dark-theme
Windows Auto Night Mode
Automatically switches between the dark and light theme of Windows 10 and Windows 11
Stars: ✭ 3,375 (+7570.45%)
Mutual labels:  light-theme, dark-theme, wpf
Adonis Ui
Lightweight UI toolkit for WPF applications offering classic but enhanced windows visuals
Stars: ✭ 878 (+1895.45%)
Mutual labels:  light-theme, dark-theme, wpf
SuggestBoxLib
A WPF Dark/Light AutoComplete TextBox that can easily handle 20.000+ entries.
Stars: ✭ 36 (-18.18%)
Mutual labels:  light-theme, dark-theme, wpf
Edi
Edi - The open source text editor IDE based on AvalonDock and AvalonEdit
Stars: ✭ 220 (+400%)
Mutual labels:  light-theme, dark-theme, wpf
Colorpickerwpf
Simple color picker control for WPF
Stars: ✭ 71 (+61.36%)
Mutual labels:  color, color-picker, wpf
Colorbook
🎨 Color schemes for UI design - Optimized for foreground, background, border, etc. https://liyasthomas.github.io/colorbook
Stars: ✭ 148 (+236.36%)
Mutual labels:  color, color-picker
Pikolo
An android color picker library
Stars: ✭ 142 (+222.73%)
Mutual labels:  color, color-picker
yiq
Returns white when a color is dark and black when a color is light.
Stars: ✭ 24 (-45.45%)
Mutual labels:  light, color
Colorwanted
Screen color picker for Windows (Windows 上的屏幕取色器)
Stars: ✭ 105 (+138.64%)
Mutual labels:  color, color-picker
React Native Color
Color components for React Native 🌈
Stars: ✭ 178 (+304.55%)
Mutual labels:  color, color-picker
Startpage
New revamped and improved Startpage, now with Dark Mode support!
Stars: ✭ 35 (-20.45%)
Mutual labels:  light-theme, dark-theme
Bootstrap Colorpicker
Bootstrap Colorpicker is a modular color picker plugin for Bootstrap.
Stars: ✭ 1,351 (+2970.45%)
Mutual labels:  color, color-picker

Build status Release NuGet

Net4 NetCore3

ColorPickerLib

A WPF/MVVM implementation of a themeable color picker control

Project Description

This project implements a Color Picker control using MVVM/Windows Presentation Foundation (WPF) pattern and technology. These controls can be themed in dark and light themes and are localized.

You can test these controls with the demo applications provided in this repository.

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)
  • Czech
  • Dutch
  • English
  • French
  • German
  • Hindi
  • Indonesian
  • Italian
  • Japanese
  • Spanish

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:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].