]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - carpeta/disenio_grafico/src/Main.cs
me fui a dormir ...
[z.facultad/75.10/miklolife.git] / carpeta / disenio_grafico / src / Main.cs
index bbe69a743b4a9e61671d7674c9e6a214040f5704..b7400b9b1320c6e588e236ba13134ad69a88b028 100644 (file)
@@ -33,14 +33,7 @@ public class App
        
        private void InitDemo ()
        {
-               lst = new ArrayList ();
-               Plan p = new Plan (1);
-               p.Descripcion = "Hola";
-               p.PermanenciaMinima = 2;
 
-               Solicitante s = new Solicitante (ETipoDocumento.DNI, 27000193, "Gazer");
-               Afiliado f = new Afiliado (s, p,  new DateTime (2005, 7, 8));
-               lst.Add (f);
        }
 
        public void OnSalirActivate (object o, EventArgs args)
@@ -50,19 +43,14 @@ public class App
 
        public void OnConsultarAfiliado (object o, EventArgs args)
        {
-               xmla = new Glade.XML (null, "consultar_afiliado.glade", "consultarAfiliado", null);
-               xmla.Autoconnect (this);
-               wConsultarAfiliado = (Dialog)xmla.GetWidget ("consultarAfiliado");              
-               wConsultarAfiliado.SetSizeRequest (450, 250);
-               TreeView lista = (TreeView)xmla.GetWidget ("lista");
-
-               TreeStore store = new TreeStore (typeof (string), typeof (string));
-               lista.Model = store;
-
-               lista.AppendColumn ("Codigo", new CellRendererText (), "text", 0);
-               lista.AppendColumn ("Nombre", new CellRendererText (), "text", 1);
+               VIngresarSolicitud v = new VIngresarSolicitud ();
+               v.Run ();
+       }
 
-               wConsultarAfiliado.Run ();
+       public void OnEmitirHojaDeRuta (object o, EventArgs args)
+       {
+               VEmitirHojaDeRuta v = new VEmitirHojaDeRuta ();
+               v.Run ();
        }
 
        public void OnConsultarAfiliadoClose (object o, EventArgs args)