This commit is contained in:
Wiesław Šoltés 2022-05-05 18:58:44 +02:00
Родитель ab7fea1c0e
Коммит b2ea2a6054
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -58,20 +58,20 @@ public class RgbProperties : ColorPickerProperties
public byte Red public byte Red
{ {
get { return GetValue(RedProperty); } get => GetValue(RedProperty);
set { SetValue(RedProperty, value); } set => SetValue(RedProperty, value);
} }
public byte Green public byte Green
{ {
get { return GetValue(GreenProperty); } get => GetValue(GreenProperty);
set { SetValue(GreenProperty, value); } set => SetValue(GreenProperty, value);
} }
public byte Blue public byte Blue
{ {
get { return GetValue(BlueProperty); } get => GetValue(BlueProperty);
set { SetValue(BlueProperty, value); } set => SetValue(BlueProperty, value);
} }
protected override void UpdateColorPickerValues() protected override void UpdateColorPickerValues()