/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/ColorPickerPropertiesVersion1.cs
59 строк
2 KB
moooyo
[AOT] Refactor SettingsLib/SettingsUI for Native AOT compatibility (#42644)
02 дек 2025, 11:31
Не верифицирован
02 дек 2025, 11:31
bcd1583
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Text.Json; using System.Text.Json.Serialization; using Microsoft.PowerToys.Settings.UI.Library.Enumerations; namespace Microsoft.PowerToys.Settings.UI.Library { public class ColorPickerPropertiesVersion1 { public HotkeySettings DefaultActivationShortcut => new HotkeySettings(true, false, false, true, 0x43); public ColorPickerPropertiesVersion1() { ActivationShortcut = DefaultActivationShortcut; ChangeCursor = false; ColorHistory = new List<string>(); ColorHistoryLimit = 20; VisibleColorFormats = new Dictionary<string, bool>(); VisibleColorFormats.Add("HEX", true); VisibleColorFormats.Add("RGB", true); VisibleColorFormats.Add("HSL", true); ShowColorName = false; ActivationAction = ColorPickerActivationAction.OpenColorPicker; } public HotkeySettings ActivationShortcut { get; set; } [JsonPropertyName("changecursor")] [JsonConverter(typeof(BoolPropertyJsonConverter))] public bool ChangeCursor { get; set; } [JsonPropertyName("copiedcolorrepresentation")] public ColorRepresentationType CopiedColorRepresentation { get; set; } [JsonPropertyName("activationaction")] public ColorPickerActivationAction ActivationAction { get; set; } [JsonPropertyName("colorhistory")] public List<string> ColorHistory { get; set; } [JsonPropertyName("colorhistorylimit")] public int ColorHistoryLimit { get; set; } [JsonPropertyName("visiblecolorformats")] public Dictionary<string, bool> VisibleColorFormats { get; set; } [JsonPropertyName("showcolorname")] [JsonConverter(typeof(BoolPropertyJsonConverter))] public bool ShowColorName { get; set; } public override string ToString() => JsonSerializer.Serialize(this, SettingsSerializationContext.Default.ColorPickerPropertiesVersion1); } }