X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/cfe46632f0d23423068570544fae8a76e0810f92..1291e161c17f57ec10dce77c83636b8a3005977c:/demo/src/Vistas/IngresarSolicitud.cs?ds=sidebyside diff --git a/demo/src/Vistas/IngresarSolicitud.cs b/demo/src/Vistas/IngresarSolicitud.cs index 1079641..3900bc6 100644 --- a/demo/src/Vistas/IngresarSolicitud.cs +++ b/demo/src/Vistas/IngresarSolicitud.cs @@ -103,8 +103,15 @@ public class VIngresarSolicitud public void OnSeleccionarFechaClicked (object o, EventArgs args) { - CalendarDialog d = new CalendarDialog (); + + 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 ();