[ColorPicker] Add hexadecimal integer format (#21354)

* ColorPicker: Add hexadecimal integer format

* Fix typo: integral -> integer

* Rename as Hex Int
This commit is contained in:
Marius Bughiu
2022-10-30 22:07:33 +02:00
committed by GitHub
parent db191b8b75
commit 6431ccd370
5 changed files with 32 additions and 1 deletions

View File

@@ -75,5 +75,10 @@ namespace Microsoft.PowerToys.Settings.UI.Library.Enumerations
/// Color presentation as integer decimal value 0-16777215
/// </summary>
DecimalValue = 12,
/// <summary>
/// Color presentation as an 8-digit hexadecimal integer (0xFFFFFFFF)
/// </summary>
HexInteger = 13,
}
}