public MainWindow() { InitializeComponent(); DALConnection.OpenConnection(); lp = DepartementORM.listeDepartement(); lp1 = PersonenORM.listePersonne(); lp2 = EtudeORM.listeEtude(); lp3 = AnimauxORM.listeAnimaux(); lp4 = CommuneORM.listeCommune(); lp5 = PlageORM.listePlage(); lp7 = ZoneEtudeORM.listeZoneEtude(); //LIEN AVEC la VIEW listeDepartement.ItemsSource = lp; listeCommune.ItemsSource = lp4; listePlage.ItemsSource = PlageZone; listeEtude.ItemsSource = lp2; // listeDepartement2.ItemsSource = lp; // listeCommune2.ItemsSource = CommuneParDepartement; listePlage2.ItemsSource = lp5; // this.DataContext = lp; // bind de la liste avec la source, permettant le binding mais de façon globale sur toute la fenetre }
private void OnPropertyChanged(string info) { PropertyChangedEventHandler handler = PropertyChanged; if (handler != null) { handler(this, new PropertyChangedEventArgs(info)); DepartementORM.updateDepartement(this); } }
private void nomPrenomButton_Click_1(object sender, EventArgs e) { myDataObject = new DepartementViewModel(); myDataObject.numeroDepartementProperty = numeroDepartementTextBox.Text; myDataObject.nomDepartementProperty = nomDepartementTextBox.Text; DepartementViewModel nouveau = new DepartementViewModel(0, myDataObject.nomDepartementProperty, myDataObject.numeroDepartementProperty); lp.Add(nouveau); DepartementORM.insertDepartement(nouveau); lp = DepartementORM.listeDepartement(); numeroDepartementTextBox.Text = string.Empty; nomDepartementTextBox.Text = string.Empty; }