アラートを表示する
ユーザーに警告、承認要求をする。(MessageBox)
参考:ポップアップの表示
await DisplayAlert("警告", "警告があります", "OK");
bool answer
= await DisplayAlert("選択", "続けますか?", "Yes", "Stop");
ContentViewからのDisplayAlertの呼び出し
bool answer
= await App.Current.MainPage.DisplayAlert(
"Question?", "play a game?", "Yes", "No");