-
- public void OnConsultarAfiliadoClose (object o, EventArgs args)
- {
- wConsultarAfiliado.Destroy ();
- }
-
- public void OnVerAfiliado (object o, EventArgs args)
- {
- }
-
- public void OnBuscarAfiliado (object o, EventArgs args)
- {
- Entry codigo = (Entry)xmla.GetWidget ("s_codigo");
- TreeView lista = (TreeView)xmla.GetWidget ("lista");
- TreeStore store = (TreeStore)lista.Model;
- foreach (Afiliado a in lst) {
- if (a.Codigo == Int32.Parse (codigo.Text))
- store.AppendValues (String.Format("{0}", a.Codigo), a.Nombre);
- }
- }