mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-08 04:01:05 +00:00
32 lines
1,003 B
C#
32 lines
1,003 B
C#
using System;
|
|
using System.Globalization;
|
|
using System.Windows.Data;
|
|
|
|
namespace ServerManagerTool.Common.Converters
|
|
{
|
|
public class EnumConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (value == null || parameter == null)
|
|
return false;
|
|
|
|
string checkValue = value.ToString();
|
|
string targetValue = parameter.ToString();
|
|
return checkValue.Equals(targetValue, StringComparison.InvariantCultureIgnoreCase);
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (value == null || parameter == null)
|
|
return null;
|
|
|
|
bool useValue = (bool)value;
|
|
string targetValue = parameter.ToString();
|
|
if (useValue)
|
|
return Enum.Parse(targetType, targetValue);
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|