namespace GDNXFD.Alert.Config.Converters
{
using System;
using System.IO;
using System.Windows.Data;
using System.Windows.Media.Imaging;
///
/// Byte to image converter
///
public class Category2ToTextConverter : IValueConverter
{
///
/// Convert a byte array to an image.
///
///
///
///
///
///
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value != null)
{
string code = value.ToString().Trim();
switch (code)
{
case "SYZ":
return "升压站";
case "GF":
return "光伏";
}
}
return "未知";
}
///
/// Convert an image to a byte array
///
///
///
///
///
///
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
}