I am learnig xamarin, I would like to bind some propreties to a label
I have manage to do with IsVisible , TextColor & Text porprety with model like this :
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 }"
I would like to bind the label proprety : TextDecorations="Underline, Strikethrough"
Thanks for your help
