public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
 {
     try
     {
         return(InternalConverter.ConvertFrom(value));
     }
     catch (Exception)
     {
         return(null);
     }
 }