private void BtnVor_Click(object sender, RoutedEventArgs e) { Datenbank.SqlLesen _DBL = new Datenbank.SqlLesen(); //_DBL._ContVonPause(); switch (Globales.GlobalClass._SeitenNr) { case 1: frmSeiten.Source = new Uri("/Seiten/PersonenSparten.xaml", UriKind.RelativeOrAbsolute); Globales.GlobalClass._SeitenNr = 2; btnVorgaenger.IsEnabled = true; break; case 2: frmSeiten.Source = new Uri("/Seiten/PersonenBank.xaml", UriKind.RelativeOrAbsolute); Globales.GlobalClass._SeitenNr = 3; break; case 3: frmSeiten.Source = new Uri("/Seiten/PersonenAnsicht.xaml", UriKind.RelativeOrAbsolute); Globales.GlobalClass._SeitenNr = 4; btnVor.Content = "Speichern"; break; case 4: MessageBox.Show("Jetzt wird gespeichert"); break; } }
public void _FillCBO() { Datenbank.SqlLesen _DBL = new Datenbank.SqlLesen(); cboanr.ItemsSource = _DBL._Anrede().DefaultView; cboanr.DisplayMemberPath = _DBL._Anrede().Columns[1].ToString(); cboanr.SelectedValuePath = _DBL._Anrede().Columns[0].ToString(); if (Globales.GlobalClass._Anrede > 0) { cboanr.SelectedIndex = Globales.GlobalClass._Anrindexcbo; } else { cboanr.SelectedIndex = 0; } cbogeschl.ItemsSource = _DBL._Geschlecht().DefaultView; cbogeschl.DisplayMemberPath = _DBL._Geschlecht().Columns[1].ToString(); cbogeschl.SelectedValuePath = _DBL._Geschlecht().Columns[0].ToString(); if (Globales.GlobalClass._Geschl > 0) { cbogeschl.SelectedIndex = Globales.GlobalClass._Geschlindexcbo; } else { cbogeschl.SelectedIndex = 0; } cbotil.ItemsSource = _DBL._Titel().DefaultView; cbotil.DisplayMemberPath = _DBL._Titel().Columns[1].ToString(); cbotil.SelectedValuePath = _DBL._Titel().Columns[0].ToString(); if (Globales.GlobalClass._Titel > 0) { cbotil.SelectedIndex = Globales.GlobalClass._Titelindexcbo; } else { cbotil.SelectedIndex = 0; } txtvname.Text = Globales.GlobalClass._Vname; txtnname.Text = Globales.GlobalClass._Nname; txtstrasse.Text = Globales.GlobalClass._Strasse; txthnr.Text = Globales.GlobalClass._Hnr; txtplz.Text = Globales.GlobalClass._Plz; txtort.Text = Globales.GlobalClass._Ort; txtemail.Text = Globales.GlobalClass._Email; txttel.Text = Globales.GlobalClass._Tel; txtmobil.Text = Globales.GlobalClass._Mobil; }