Xamarin Forms: IMarkupExtension с привязываемым свойством не работает
Привязка не работает для тега изображения. Когда я отлаживаю, я вижу, что значение Source в классе Extension всегда равно null? Но содержание метки не является нулевым.
Xaml
<Label Text="{Binding Image}" />
<Image Source="{classes:ImageResource Source={Binding Image}}" />
ImageResourceExtension
// You exclude the 'Extension' suffix when using in Xaml markup
[Preserve(AllMembers = true)]
[ContentProperty("Source")]
public class ImageResourceExtension : BindableObject, IMarkupExtension
{
public static readonly BindableProperty SourceProperty = BindableProperty.Create(nameof(Source), typeof(string), typeof(string), null);
public string Source
{
get { return (string)GetValue(SourceProperty); }
set { SetValue(SourceProperty, value); }
}
public object ProvideValue(IServiceProvider serviceProvider)
{
if (Source == null)
return null;
// Do your translation lookup here, using whatever method you require
var imageSource = ImageSource.FromResource(Source);
return imageSource;
}
}
1 ответ
Решение
Конечно, нет!
Это не потому, что вы наследуете от BindableObject
что магически ваш объект имеет BindingContext
задавать. И без BindingContext
нет способа решить {Binding Image}
,
То, что вы ищете здесь, это конвертер
class ImageSourceConverter : IValueConverter
{
public object ConvertTo (object value, ...)
{
return ImageSource.FromResource(Source);
}
public object ConvertFrom (object value, ...)
{
throw new NotImplementedException ();
}
}
Затем вы добавляете этот конвертер в ресурсы корневого элемента Xaml (или Application.Resources и используете его в своих привязках).
<Label Text="{Binding Image}" />
<Image Source="{Binding Image, Converter={StaticResource myConverter}}" />