3 implementations of ConvertBack
Microsoft.Maui.Controls (3)
ContentConverter.cs (1)
27 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
RadioButton\RadioButton.cs (1)
701 public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
ToStringValueConverter.cs (1)
20 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) => throw new NotSupportedException();
3 references to ConvertBack
Microsoft.Maui.Controls (3)
Binding.cs (1)
191 value = Converter.ConvertBack(value, sourcePropertyType, ConverterParameter, CultureInfo.CurrentUICulture);
TemplateBinding.cs (1)
121 value = Converter.ConvertBack(value, sourcePropertyType, ConverterParameter, CultureInfo.CurrentUICulture);
TypedBinding.cs (1)
262 value = Converter.ConvertBack(value, sourcePropertyType, ConverterParameter, CultureInfo.CurrentUICulture);