Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 828 Bytes

File metadata and controls

41 lines (30 loc) · 828 Bytes

ColorPickerWPF

ColorPicker of WPF UserControl

Requirement

.NET 10.0 - windows
WPF

Install

Download DLL
Download Nuget

Demo

Demo

Usage

Sample

xmlns:colorpicker="clr-namespace:ColorPicker;assembly=ColorPicker"
<colorpicker:HSVColorPicker
    x:Name="HSVColorPicker"
    HSVColorChanged="HSVColorPicker_HSVColorChanged"
    SelectedColor="{Binding SelectedHSV}" />
private void HSVColorPicker_HSVColorChanged(object sender, HSVColorChangedEventArgs e) {
    StatusBar.Text = $"{e.Color} user - {e.UserOperation}";
}

Licence

MIT

Author

T.Yoshimura