private void btnodstrani_Click(object sender, RoutedEventArgs e)
        {
            OdstraniStudenta odstranis = new OdstraniStudenta();

            odstranis.Show();
            this.Close();
        }
 public OdstraniStudenta()
 {
     InitializeComponent();
     odstrani1 = this;
     try
     {
         NapolniTabeloStudentov();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }