private void InputUloha20ListCis_KeyUp(object sender, KeyEventArgs e) { if (e.Key == Key.Enter) { try { var cisloListu = int.Parse(InputUloha20ListCis.Text); var cisloKatastru = int.Parse(InputUloha20KatCis.Text); Uloha20List.ItemsSource = AfrikaKataster.Uloha20Nehnutelnosti(cisloKatastru, cisloListu); } catch (Exception) { MessageBox.Show("Zle zadane parametre", "ERR"); } } }
private void VsetkoListID_KeyUp(object sender, KeyEventArgs e) { if (e.Key == Key.Enter) { try { var cisKatastra = int.Parse(VsetkoKataster.Text); var idListu = int.Parse(VsetkoListID.Text); VsetkoVlastnikove.ItemsSource = AfrikaKataster.VsetkoVlastniciListu(cisKatastra, idListu); VsetkoListyNehnutelnosti.ItemsSource = AfrikaKataster.Uloha20Nehnutelnosti(cisKatastra, idListu); } catch (Exception) { MessageBox.Show("Zle zadane udaje", "Err"); } } }
private void Uloha20Zmaz_Click(object sender, RoutedEventArgs e) { try { var cisloListu = int.Parse(InputUloha20ListCis.Text); var cisloKatastru = int.Parse(InputUloha20KatCis.Text); var supisCislo = int.Parse(InputUloha20SupisCislo.Text); var odpoved = AfrikaKataster.Uloha20(supisCislo, cisloListu, cisloKatastru); if (odpoved == "OK") { Uloha20List.ItemsSource = AfrikaKataster.Uloha20Nehnutelnosti(cisloKatastru, cisloListu); } else { MessageBox.Show(odpoved, "Err"); } } catch (Exception) { MessageBox.Show("Zle zadane parametre", "ERR"); } }