]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - carpeta/disenio_grafico/src/Main.cs
* Ejemplo de una vista (CUSO IngresarSolicitud tomada de ejemplo)
[z.facultad/75.10/miklolife.git] / carpeta / disenio_grafico / src / Main.cs
1
2 using System;
3 using System.Collections;
4 using Gtk;
5 using Glade;
6 using Dominio.Afiliados;
7 using Dominio.Planes;
8
9 public class App
10 {
11         Dialog wConsultarAfiliado;
12         ArrayList lst;
13         Glade.XML xmla;
14
15         static public void Main (string[] args)
16         {
17                 new App ();
18         }
19
20         public App ()
21         {
22                 Application.Init();
23
24                 Glade.XML gxml = new Glade.XML (null, "main.glade", "main", null);
25                 gxml.Autoconnect (this);
26                 Widget w = gxml.GetWidget ("main");
27                 
28                 w.SetSizeRequest (450, 250);
29
30                 InitDemo ();
31                 Application.Run();
32         }
33         
34         private void InitDemo ()
35         {
36
37         }
38
39         public void OnSalirActivate (object o, EventArgs args)
40         {
41                 Application.Quit ();
42         }
43
44         public void OnConsultarAfiliado (object o, EventArgs args)
45         {
46                 VIngresarSolicitud v = new VIngresarSolicitud ();
47                 v.Run ();
48         }
49
50         public void OnConsultarAfiliadoClose (object o, EventArgs args)
51         {
52                 wConsultarAfiliado.Destroy ();
53         }
54
55         public void OnVerAfiliado (object o, EventArgs args)
56         {
57         }
58         
59         public void OnBuscarAfiliado (object o, EventArgs args)
60         {
61                 Entry codigo = (Entry)xmla.GetWidget ("s_codigo");
62                 TreeView lista = (TreeView)xmla.GetWidget ("lista");
63                 TreeStore store = (TreeStore)lista.Model;
64                 foreach (Afiliado a in lst) {
65                         if (a.Codigo == Int32.Parse (codigo.Text))
66                                 store.AppendValues (String.Format("{0}", a.Codigo), a.Nombre);
67                 }
68         }
69 }
70