3 implementations of Convert
Microsoft.Maui.Controls (3)
ContentConverter.cs (1)
10 public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
RadioButton\RadioButton.cs (1)
693 public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
ToStringValueConverter.cs (1)
9 public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
6 references to Convert
Microsoft.Maui.Controls (4)
BindableProperty.cs (1)
242 value = valueConverter.Convert(value, returnType, null, CultureInfo.CurrentUICulture);
Binding.cs (1)
183 value = Converter.Convert(value, targetPropertyType, ConverterParameter, CultureInfo.CurrentUICulture);
TemplateBinding.cs (1)
113 value = Converter.Convert(value, targetPropertyType, ConverterParameter, CultureInfo.CurrentUICulture);
TypedBinding.cs (1)
254 value = Converter.Convert(value, targetPropertyType, ConverterParameter, CultureInfo.CurrentUICulture);
Microsoft.Maui.Controls.Xaml (2)
MarkupExtensions\OnIdiomExtension.cs (1)
67 return Converter.Convert(value, propertyType, ConverterParameter, CultureInfo.CurrentUICulture);
MarkupExtensions\OnPlatformExtension.cs (1)
89 return Converter.Convert(value, propertyType, ConverterParameter, CultureInfo.CurrentUICulture);