X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/a993f69309df5936fa235b3cf7f52cd9858112d7..faf142a1bc9e4859ca6334b2fd9e67d0083a11f0:/demo/src/Vistas/MantenerPlanes.cs diff --git a/demo/src/Vistas/MantenerPlanes.cs b/demo/src/Vistas/MantenerPlanes.cs index d0c63b2..604cb99 100644 --- a/demo/src/Vistas/MantenerPlanes.cs +++ b/demo/src/Vistas/MantenerPlanes.cs @@ -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)