private void Button_Click(object sender, RoutedEventArgs e) { Zamestnanec zam = new Zamestnanec(Name.Text, Surname.Text, Age.Text, Education.Text, Position.Text, Pay.Text); Info.Text = $@"Jméno: {zam.Jmeno} Příjmení: {zam.Prijmeni} Rok narození: {zam.Rok} Vzdělání: {zam.Vzdelani} Pozice: {zam.Pozice} Plat: {zam.Plat}"; }
public MainWindow() { InitializeComponent(); z = new Zamestnanec("Jméno", "Příjmení", "Rok", "Vzdělání", "Pozice", "Plat"); this.DataContext = z; ErrorLabelJmeno.DataContext = this; ErrorLabelPrijmeni.DataContext = this; ErrorLabelRok.DataContext = this; ErrorLabelPozice.DataContext = this; ErrorLabelPlat.DataContext = this; }