public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
 {
     if (converter.CanConvertTo(targetType))
     {
         return(converter.ConvertTo(value, targetType));
     }
     else
     {
         return(null);
     }
 }