private void btnEditEntr_Click(object sender, RoutedEventArgs e) { NuevaLesion nll = new NuevaLesion(Convert.ToInt16(((Button)sender).Tag.ToString())); nll.ShowDialog(); loadData(); }
private void btnLesion_Click(object sender, RoutedEventArgs e) { NuevaLesion nll = new NuevaLesion(); nll.ShowDialog(); mainWindow.loadData(); }