Я учусь xamarin, я хотел бы привязать некоторые свойства к метке
Мне удалось сделать с помощью IsVisible, TextColor & Text porprety с такой моделью:
public Color MyLabelColor { get; set; } = Color.FromHex("#ff6465");
public string LabelText { get; set; }
public bool LabelIsVisibleOrNot { get; set; } = false;
And bind the like this:
IsVisible="{Binding MyLabelColor}"
Text="{Binding LabelText}"
TextColor="{Binding MyLabelColor }"
Я хотел бы связать ярлык пропреты: TextDecorations="Underline, Strikethrough"
Спасибо за вашу помощь