4 using System.Globalization;
7 namespace SiliconStudio.Presentation.ValueConverters
15 public override object Convert(
object value, Type targetType,
object parameter, CultureInfo culture)
17 return value ?? DependencyProperty.UnsetValue;
This converter will convert a null value to DependencyProperty.UnsetValue. If the given object is not...
override object Convert(object value, Type targetType, object parameter, CultureInfo culture)