10 class FromUICultureNameToItemChecked : IValueConverter
21 public object Convert(
object value, Type targetType,
object parameter, CultureInfo culture)
23 if ((
string)value == (
string)parameter)
38 public object ConvertBack(
object value, Type targetType,
object parameter,
41 throw new ApplicationException(
App.FindStringResource(
"UnexpectedErrorMessage"));
GUIInteractions logic for App.xaml
object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Convert UICulture name string to status of checkbox item.
object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Convert status of checkbox item to UI culture string. Should not be used.