]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Vistas/MantenerPlanes.cs
Hasta modelo 10 completito.
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / MantenerPlanes.cs
index d0c63b237ef44fea17e68c1c55ec9fdef837e650..604cb9901741756f1f3f8297f5774582b1f0fdfe 100644 (file)
@@ -33,6 +33,34 @@ public class VMantenerPlanes
        {
                xml = new Glade.XML (null, "mantener_planes.glade", "mantener_planes", null);
                xml.Autoconnect (this);
+
+               ListStore m = new ListStore (typeof(string), typeof(float), typeof(int));
+               lista.Model = m;
+               lista.HeadersVisible = true;
+               lista.AppendColumn ("Descripción", new CellRendererText (), "text", 0);
+               lista.AppendColumn ("Categoría", new CellRendererText (), "text", 1);
+               lista.AppendColumn ("Permanencia Mínima", new CellRendererText (), "text", 2);
+       
+               TreeIter nuevo = m.Append ();
+       
+               m.SetValue (nuevo, 0, "Neo 210");
+               m.SetValue (nuevo, 1, 1.0f);
+               m.SetValue (nuevo, 2, 1);
+       
+               nuevo = m.Append ();
+               m.SetValue (nuevo, 0, "Neo 310");
+               m.SetValue (nuevo, 1, 2.0f);
+               m.SetValue (nuevo, 2, 2);
+
+               nuevo = m.Append ();
+               m.SetValue (nuevo, 0, "Neo 410");
+               m.SetValue (nuevo, 1, 3.0f);
+               m.SetValue (nuevo, 2, 4);
+       
+               nuevo = m.Append ();
+               m.SetValue (nuevo, 0, "Ejecutive 510");
+               m.SetValue (nuevo, 1, 4.0f);
+               m.SetValue (nuevo, 2, 3);
        }
 
        public void OnDialogResponse (object o, ResponseArgs args)