private void btnDodaj_Click(object sender, RoutedEventArgs e) { if (this.conn.State == ConnectionState.Open) { DodajKarnet wnd = new DodajKarnet(this, false); wnd.Owner = this; wnd.Show(); } else { MessageBox.Show("Wystąpił Błąd Połączenia. Zadzwoń do Administratora", "Brak połączenia!", MessageBoxButton.OK, MessageBoxImage.Exclamation); } }
private void btnEdytuj_Click(object sender, RoutedEventArgs e) { if (this.conn.State == ConnectionState.Open) { if (lstKarnety.SelectedItems.Count != 0) { DodajKarnet wnd = new DodajKarnet(this, true); wnd.Owner = this; wnd.Show(); } else { MessageBox.Show("WYBIERZ KARNET.", "UWAGA!", MessageBoxButton.OK, MessageBoxImage.Exclamation); } } else { MessageBox.Show("Wystąpił Błąd Połączenia. Zadzwoń do Administratora", "Brak połączenia!", MessageBoxButton.OK, MessageBoxImage.Exclamation); } }