//otevreni edit okna a zobrazeni stavajiciho zaznamu private void Button_Click_1(object sender, RoutedEventArgs e) { Edit_window edit_okno = new Edit_window(); edit_okno.label_helpid.Content = label_id.Content; edit_okno.tb_nazev.Text = label_nazev.Content.ToString(); edit_okno.tb_autor.Text = label_autor.Content.ToString(); edit_okno.tb_kom.Text = label_recenze.ToString(); edit_okno.tb_zanr.Text = label_zanr.Content.ToString(); edit_okno.hodnoceni_combo.SelectedIndex = Convert.ToInt32(label_hodnoceni.Content) - 1; //-1 protoze index comboboxu zacina od 0 edit_okno.label_image.Content = image1.Source; edit_okno.Show(); Application.Current.Windows[0].Close(); }