0
所以我有這個代碼,我在想如果你可以有更多的一行文本?你可以在一個DisplayAlert中多出一行嗎?
正在等待DisplayAlert(「Contact」,「Name:」+ Contact.Fullname,「Close」);
我allso想電子郵件和年齡顯示
所以我有這個代碼,我在想如果你可以有更多的一行文本?你可以在一個DisplayAlert中多出一行嗎?
正在等待DisplayAlert(「Contact」,「Name:」+ Contact.Fullname,「Close」);
我allso想電子郵件和年齡顯示
DisplayAlert("Contact","Name: " + Contact.Fullname + "\nAddress: " + Contact.Address + "\nEmail: " + Contact.Email + "\nAge: " + Contact.Age, "Close");
String contact_str = "Contact: " + name;
String email_str = "Address: " + email;
String age_str = "Age: " + age;
DisplayAlert(contact_str +"\n"+ email_str +"\n"+ age_str);
嘗試使用\ n警報消息中 – Rob85