我有一个自定义的MyCachedImage,它继承自FFImageLoading.Forms.CachedImage,它在ListView中用于显示图像。 此图像的源由2个属性组成:自定义对象作为实体,整数作为大小。 假设实体是一个“城市”对象,大小是10,那么图像源将是“http://..../city/10/image.png”
只有在两个属性都被定价时,才必须设置图像源。
那么,我的答案是,创建源网址的方式和时间?
MyCachedImage.vb
public class MyCachedImage : CachedImage
{
public static readonly BindableProperty EntityProperty =
BindableProperty.Create(nameof(Entity), typeof(MyObject), typeof(MyCachedImage));
public MyObject Entity
{
get { return (MyObject)GetValue(EntityProperty); }
set { SetValue(EntityProperty, value); }
}
public static readonly BindableProperty SizeProperty =
BindableProperty.Create(nameof(Size), typeof(int), typeof(MyCachedImage), defaultValue: 0);
public int Size
{
get { return (int)GetValue(SizeProperty); }
set { SetValue(SizeProperty, value); }
}
public MyCachedImage()
{
??? set source here?
}
protected override void OnBindingContextChanged()
{
??? set source here?
}
}
MyPage.xaml
<ListView ....>
....
<control:MyCachedImage Size="10"
Entity="{Binding MyObject}"
WidthRequest="40"
HeightRequest="40" />
....
</ListView>
答案 0 :(得分:0)
我想知道何时创建该字符串并找到正确的解决方案。 设置所有属性时调用OnBindingContextChanged,因此:
protected override void OnBindingContextChanged()
{
base.OnBindingContextChanged();
if (_source == string.Empty)
{
Source = Helpers.ImageHelper.UriFromEntity(Entity, ImageSize);
}
}