{
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)