]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Vistas/IngresarSolicitud.cs
* Mejora menor
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / IngresarSolicitud.cs
index 384e646da13d598df7dc008d29dda47ece1c582e..3900bc65bc5f86c21710462b89eec48b1207e4d9 100644 (file)
@@ -101,6 +101,23 @@ public class VIngresarSolicitud
                c.Dispose ();
        }
 
+       public void OnSeleccionarFechaClicked (object o, EventArgs args)
+       {
+               
+               CalendarDialog d;
+               if (fechaNac.Text.Equals (""))
+                       d = new CalendarDialog ();
+               else
+                       d = new CalendarDialog (fechaNac.Text);
+               
+               int response;
+               
+               response = d.Run();
+               if (response == -3)
+                       fechaNac.Text = d.Date.ToLongDateString ();
+               d.Destroy ();
+       }
+
        public void Run ()
        {
                Dialog w = (Dialog)xml.GetWidget ("ingresarSolicitud");