与ImageButton的MvvmCross绑定图像

时间:2013-08-02 12:55:14

标签: mvvmcross

我尝试将Image Url绑定到图像按钮

<ImageButton
    android:id="@+id/activity_image"
    android:clickable="true"
    android:layout_width="48dp"
    android:layout_height="48dp"
    android:padding="4dp"
    android:layout_alignParentLeft="true"
    local:MvxBind="ImageUrl Type, Converter = Activity" />

但是他没有用。如果我将ImageButton更改为Mvx.MvxImageVIew,它将起作用。我也尝试了Mvx.MvxImageButton(如果存在),它显示错误。

我想知道是否有办法绑定图像按钮的图像

1 个答案:

答案 0 :(得分:1)

MvvmCross只能绑定现有的C#属性。

MvxImageView具有ImageUrl属性 - ImageButton没有。

获得您需要的功能: