public static class AlertExtension { public static void ShowAlert(this Activity activity ,string msg,string title = "", string btnText = "OK"){ AlertDialog.Builder builder = new AlertDialog.Builder(activity); builder.SetTitle(title); builder.SetMessage(msg); builder.SetCancelable(false); builder.SetPositiveButton(btnText, delegate { // it is alert ,keep it simple , do nothing here }); builder.Show(); } }
Huancuan敤镞讹丝
if(txtPwd.Text != txtCfmPwd.Text){ this.ShowAlert("Password and confirmed password not match"); }
上記は、Xamarin を使用してアプリケーションを開発するための C# の内容です - Alert Box の詳細については、PHP 中国語 Web サイト (www.php.ん)!