예제 #1
0
 private void btnModificar_Click(object sender, RoutedEventArgs e)
 {
     GrupoClientes r = ((Button)sender).DataContext as GrupoClientes;
     long lID = r.ID;
     Popups.GrupoCliente w = new Popups.GrupoCliente(lID);
     w.ShowDialog();
     realizarBusqueda(new GrupoClientes());
 }
예제 #2
0
 private void btnAdd_Click(object sender, RoutedEventArgs e)
 {
     Popups.GrupoCliente w = new Popups.GrupoCliente();
     w.ShowDialog();
     realizarBusqueda(new GrupoClientes());
 }