A Single Label can display 2 Data fields alternately select by user
问题 I'm trying to use a single Label to display one of the two data fields alternately in Xamarin Forms. Only Label 1 Display the binding field and second Label which I am trying to use a variable "DisplayField" is not displaying either 'Contact_Address' or 'Contact_eMail' Model class public class Contacts { [PrimaryKey][Autoincrement] public int Contact_ID { get; set; } public string Contact_Name { get; set; } public string Contact_Address { get; set; } public string Contact_eMail { get; set; }