/// <summary>
        /// Ouvre le motif séléctionné à l'aide d'une nouvelle fenêtre
        /// </summary>
        public Type_Remboursement 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'un type de remboursement en cours ...";

                    //Création de la fenêtre
                    TypeRemboursementWindow TypeRemboursementWindow = new TypeRemboursementWindow();

                    //Initialisation du Datacontext
                    TypeRemboursementWindow.DataContext = new Type_Remboursement();
                    TypeRemboursementWindow.DataContext = (Type_Remboursement)this._DataGridMain.SelectedItem;

                    //Je positionne la lecture seule sur la fenêtre
                    TypeRemboursementWindow.lectureSeule();

                    //J'affiche la fenêtre
                    bool? dialogResult = TypeRemboursementWindow.ShowDialog();

                    //Affichage du message "affichage en cours"
                    ((App)App.Current)._theMainWindow.parametreMain.progressBarMainWindow.IsIndeterminate = false;
                    ((App)App.Current)._theMainWindow.parametreMain.textBlockMainWindow.Text = "Affichage d'un type de remboursement terminé : " + this.listTypeRemb.Count() + " / " + this.max;

                    //Renvoi null
                    return null;
                }
                else
                {
                    MessageBox.Show("Vous ne devez sélectionner qu'un seul type de remboursement.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation);
                    this._DataGridMain.Items.Refresh();
                    return null;
                }
            }
            else
            {
                MessageBox.Show("Vous devez sélectionner un type de remboursement.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation);
                this._DataGridMain.Items.Refresh();
                return null;
            }
        }