+ {
+ Init ();
+ }
+
+ public CalendarDialog (string date):base ("Seleccionar Fecha", null, DialogFlags.DestroyWithParent)
+ {
+ Init ();
+ try {
+ calendar.Date = DateTime.Parse (date);
+ }
+ catch (Exception e) {
+ Console.WriteLine (e);
+ }
+ }
+
+ private void Init ()