xamarin.forms标记数据绑定可见性到viewmodel中的不同属性

时间:2018-04-12 20:39:33

标签: data-binding xamarin.forms visibility

在xamarin.forms中,我有一个标签,使用数据绑定到viewmodel中的属性来填充文本。如何使用数据绑定设置此标签的可见性,但是在viewmodel中设置不同的变量...而不是文本绑定的那个?

另一个属性是一个ID号...我想说的是,如果ID号= 1则是HIDE标签。

1 个答案:

答案 0 :(得分:2)

<Label Text="{Binding MyTextProperty}" IsVisible="{Binding MyBooleanProperty}" />

public bool MyBooleanProperty {
  get {
    if (ID == 1) return false;
    return true;
  }
}