This commit is contained in:
Wiesław Šoltés 2022-08-17 11:35:47 +02:00
Родитель a5066f4b99
Коммит dce95a3212
2 изменённых файлов: 4 добавлений и 1 удалений

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

@ -225,7 +225,7 @@
<Setter Property="ClipValueToMinMax" Value="True" />
<Setter Property="ShowButtonSpinner" Value="True" />
<Setter Property="AllowSpin" Value="True" />
<Setter Property="CultureInfo" Value="en-US" />
<Setter Property="NumberFormat" Value="{x:Static cp:ColorPicker.NumberFormat}" />
<Setter Property="Margin" Value="2" />
<Setter Property="Padding" Value="1" />
</Style>

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

@ -1,4 +1,5 @@
using System;
using System.Globalization;
using System.Reactive.Disposables;
using Avalonia;
using Avalonia.Collections;
@ -12,6 +13,8 @@ namespace ThemeEditor.Controls.ColorPicker;
public class ColorPicker : TemplatedControl
{
public static readonly NumberFormatInfo NumberFormat = new CultureInfo("en-US").NumberFormat;
public static readonly StyledProperty<Color?> ColorProperty =
AvaloniaProperty.Register<ColorPicker, Color?>(nameof(Color));