private void Nova_Click(object sender, RoutedEventArgs e) { StudentWindow w = new StudentWindow( lista); //Vraća true/false Dialog result bool res = (bool)w.ShowDialog(); //kreiran novi student if (res) { dg_studenti.ItemsSource = null; dg_studenti.ItemsSource = lista; } }
private void Nova_Click(object sender, RoutedEventArgs e) { StudentWindow w = new StudentWindow(lista); //Vraća true/false Dialog result bool res = (bool)w.ShowDialog(); //kreiran novi student if (res) { dg_studenti.ItemsSource = null; dg_studenti.ItemsSource = lista; } }