/// <summary> /// Ouvre la civilité séléctionnée à l'aide d'une nouvelle fenêtre /// </summary> public Tache_Atelier Open() { if (this._DataGridMain.SelectedItem != null) { if (this._DataGridMain.SelectedItems.Count == 1) { //Affichage du message "modification en cours" ((App)App.Current)._theMainWindow.parametreMain.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.parametreMain.textBlockMainWindow.Text = "Modification d'une tache atelier en cours ..."; //Création de la fenêtre TacheAtelierWindow tacheatelierWindow = new TacheAtelierWindow(); //Initialisation du Datacontext en Commande_Fournisseur et association à la Commande_Fournisseur sélectionnée tacheatelierWindow.DataContext = new Tache_Atelier(); tacheatelierWindow.DataContext = (Tache_Atelier)this._DataGridMain.SelectedItem; //booléen nullable vrai ou faux ou null bool? dialogResult = tacheatelierWindow.ShowDialog(); if (dialogResult.HasValue && dialogResult.Value == true) { //Si j'appuie sur le bouton Ok, je renvoi l'objet DAO se trouvant dans le datacontext de la fenêtre return (Tache_Atelier)tacheatelierWindow.DataContext; } else { //Je récupère les anciennes données de la base sur les modifications effectuées ((App)App.Current).mySitaffEntities.Refresh(System.Data.Objects.RefreshMode.StoreWins, (Tache_Atelier)(this._DataGridMain.SelectedItem)); //La commande étant un objet "critique" au niveau des associations, je refresh l'edmx et je relance le filtrage s'il y en avait un afin d'avoir les mêmes infos (invisible pour l'user) ((App)App.Current).refreshEDMXSansVidage(); this.filtrage(); //Si j'appuie sur le bouton annuler, je préviens que j'annule ma modification ((App)App.Current)._theMainWindow.parametreMain.progressBarMainWindow.IsIndeterminate = false; this.recalculMax(); ((App)App.Current)._theMainWindow.parametreMain.textBlockMainWindow.Text = "Modification d'une tache atelier annulée : " + this.listTache.Count() + " / " + this.max; return null; } } else { MessageBox.Show("Vous ne devez sélectionner qu'une seule tache atelier.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } } else { MessageBox.Show("Vous devez sélectionner une tache atelier.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } }
/// <summary> /// Ajoute une nouvelle civilité à la liste à l'aide d'une nouvelle fenêtre /// </summary> public Tache_Atelier Add() { //Affichage du message "ajout en cours" ((App)App.Current)._theMainWindow.parametreMain.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.parametreMain.textBlockMainWindow.Text = "Ajout d'une tache atelier en cours ..."; //Initialisation de la fenêtre TacheAtelierWindow tacheatelierWindow = new TacheAtelierWindow(); //Création de l'objet temporaire Tache_Atelier tmp = new Tache_Atelier(); //Mise de l'objet temporaire dans le datacontext tacheatelierWindow.DataContext = tmp; //booléen nullable vrai ou faux ou null bool? dialogResult = tacheatelierWindow.ShowDialog(); if (dialogResult.HasValue && dialogResult.Value == true) { //Si j'appuie sur le bouton Ok, je renvoi l'objet banque se trouvant dans le datacontext de la fenêtre return (Tache_Atelier)tacheatelierWindow.DataContext; } else { try { //On détache la commande ((App)App.Current).mySitaffEntities.Detach((Tache_Atelier)tacheatelierWindow.DataContext); } catch (Exception) { } //Si j'appuie sur le bouton annuler, je préviens que j'annule mon ajout ((App)App.Current)._theMainWindow.parametreMain.progressBarMainWindow.IsIndeterminate = false; this.recalculMax(); ((App)App.Current)._theMainWindow.parametreMain.textBlockMainWindow.Text = "Ajout d'une tache atelier annulée : " + this.listTache.Count() + " / " + this.max; return null; } }
/// <summary> /// Ouvre la civilité séléctionnée à l'aide d'une nouvelle fenêtre /// </summary> public Tache_Atelier Look() { if (this._DataGridMain.SelectedItem != null) { if (this._DataGridMain.SelectedItems.Count == 1) { //Affichage du message "affichage en cours" ((App)App.Current)._theMainWindow.parametreMain.progressBarMainWindow.IsIndeterminate = true; ((App)App.Current)._theMainWindow.parametreMain.textBlockMainWindow.Text = "Affichage d'une tache atelier en cours ..."; //Création de la fenêtre TacheAtelierWindow tacheatelierWindow = new TacheAtelierWindow(); //Initialisation du Datacontext en Commande_Fournisseur et association à l'ativite sélectionnée tacheatelierWindow.DataContext = new Tache_Atelier(); tacheatelierWindow.DataContext = (Tache_Atelier)this._DataGridMain.SelectedItem; //Je positionne la lecture seule sur la fenêtre tacheatelierWindow.lectureSeule(); //J'affiche la fenêtre bool? dialogResult = tacheatelierWindow.ShowDialog(); //Affichage du message "affichage en cours" ((App)App.Current)._theMainWindow.parametreMain.progressBarMainWindow.IsIndeterminate = false; ((App)App.Current)._theMainWindow.parametreMain.textBlockMainWindow.Text = "Affichage d'une tache atelier terminée : " + this.listTache.Count() + " / " + this.max; //Renvoi null return null; } else { MessageBox.Show("Vous ne devez sélectionner qu'une seule tache atelier.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } } else { MessageBox.Show("Vous devez sélectionner une tache atelier.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation); return null; } }