public override void ViewDidLoad() { base.ViewDidLoad(); //Se establece un borde para el textarea de las observaciones this.cmpDescripcion.Layer.BorderWidth = 1.0f; this.cmpDescripcion.Layer.BorderColor = UIColor.Gray.CGColor; this.cmpDescripcion.Layer.ShadowColor = UIColor.Black.CGColor; this.cmpDescripcion.Layer.CornerRadius = 8; this.btnGuardar.TouchUpInside += (sender, e) => { UIAlertView alert = new UIAlertView() { Title = "Aviso", Message = "¿Escorrecta la informacion?" }; alert.AddButton("SI"); alert.AddButton("NO"); alert.Clicked += (s, o) => { if (o.ButtonIndex == 0) { try{ newDetailService = new NewDetailService(); String respuesta = newDetailService.SetData(TaskDetailView.tareaId, this.cmpDescripcion.Text, MainView.user); if (respuesta.Equals("1")) { SuccesConfirmation(); } else if (respuesta.Equals("0")) { ErrorConfirmation(); } }catch (System.Net.WebException) { ServerError(); } } }; alert.Show(); }; }
public override void ViewDidLoad() { base.ViewDidLoad (); //Se establece un borde para el textarea de las observaciones this.cmpDescripcion.Layer.BorderWidth = 1.0f; this.cmpDescripcion.Layer.BorderColor = UIColor.Gray.CGColor; this.cmpDescripcion.Layer.ShadowColor = UIColor.Black.CGColor; this.cmpDescripcion.Layer.CornerRadius = 8; this.btnGuardar.TouchUpInside += (sender, e) => { UIAlertView alert = new UIAlertView(){ Title = "Aviso" , Message = "¿Escorrecta la informacion?" }; alert.AddButton ("SI"); alert.AddButton ("NO"); alert.Clicked += (s, o) => { if(o.ButtonIndex==0){ try{ newDetailService = new NewDetailService(); String respuesta = newDetailService.SetData(TaskDetailView.tareaId, this.cmpDescripcion.Text, MainView.user); if(respuesta.Equals("1")){ SuccesConfirmation(); }else if(respuesta.Equals("0")){ ErrorConfirmation(); } }catch(System.Net.WebException){ ServerError(); } } }; alert.Show(); }; }