在xamarin.forms中,我有一个标签,使用数据绑定到viewmodel中的属性来填充文本。如何使用数据绑定设置此标签的可见性,但是在viewmodel中设置不同的变量...而不是文本绑定的那个?
另一个属性是一个ID号...我想说的是,如果ID号= 1则是HIDE标签。
答案 0 :(得分:2)
<Label Text="{Binding MyTextProperty}" IsVisible="{Binding MyBooleanProperty}" />
public bool MyBooleanProperty {
get {
if (ID == 1) return false;
return true;
}
}