-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathColorToDisplayNameConverter.cs
More file actions
56 lines (51 loc) · 1.45 KB
/
ColorToDisplayNameConverter.cs
File metadata and controls
56 lines (51 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Windows.UI;
namespace CommunityToolkit.WinUI.Converters;
/// <summary>
/// Gets the approximated display name for the color.
/// </summary>
public partial class ColorToDisplayNameConverter : IValueConverter
{
/// <inheritdoc/>
public object Convert(
object value,
Type targetType,
object parameter,
string language)
{
Color color;
if (value is Color valueColor)
{
color = valueColor;
}
else if (value is SolidColorBrush valueBrush)
{
color = valueBrush.Color;
}
else
{
// Invalid color value provided
return DependencyProperty.UnsetValue;
}
#if HAS_UNO
// ColorHelper.ToDisplayName not yet supported on Uno Platform.
// Track https://github.com/unoplatform/uno/issues/18004
return "Not supported";
#elif WINUI2
return Windows.UI.ColorHelper.ToDisplayName(color);
#elif WINUI3
return Microsoft.UI.ColorHelper.ToDisplayName(color);
#endif
}
/// <inheritdoc/>
public object ConvertBack(
object value,
Type targetType,
object parameter,
string language)
{
return DependencyProperty.UnsetValue;
}
}