mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
UI - Resolved all remaining warnings Layer properties - Fixed DisableKeyframes layer property attribute not being applied
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.Windows.Data;
|
|
using System.Windows.Media;
|
|
|
|
namespace Artemis.UI.Shared
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Converts <see cref="T:System.Windows.Media.Color" /> into <see cref="T:System.String" />.
|
|
/// </summary>
|
|
[ValueConversion(typeof(Color), typeof(string))]
|
|
public class ColorToStringConverter : IValueConverter
|
|
{
|
|
/// <inheritdoc />
|
|
public object? Convert(object? value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
return value?.ToString()?.ToUpper();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public object? ConvertBack(object? value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
try
|
|
{
|
|
if (string.IsNullOrWhiteSpace(value as string))
|
|
return default(Color);
|
|
|
|
object? color = ColorConverter.ConvertFromString((string) value!);
|
|
if (color is Color c)
|
|
return c;
|
|
|
|
return default(Color);
|
|
}
|
|
catch (FormatException)
|
|
{
|
|
return default(Color);
|
|
}
|
|
}
|
|
}
|
|
} |