4 using System.Globalization;
6 namespace SiliconStudio.Presentation.ValueConverters
14 public override object Convert(
object value, Type targetType,
object parameter, CultureInfo culture)
16 return string.Equals((string)value, (
string)parameter);
override object Convert(object value, Type targetType, object parameter, CultureInfo culture)
This converter compares the given string with the string passed as parameter, and returns true if the...