private void _CommandOpenShop_Executed_1(object sender, ExecutedRoutedEventArgs e)
        {
            this.resetCouleurs();

            this.viderBorderContent();

            this.progressBarMainWindow.IsIndeterminate = true;
            this.changementTexteStatusBar("Affichage du Shop en cours ...");

            ShopCommandeWindow shopCommandeWindow = new ShopCommandeWindow();
            shopCommandeWindow._BoutonImporter.Visibility = Visibility.Collapsed;
            shopCommandeWindow.ShowDialog();

            this.progressBarMainWindow.IsIndeterminate = false;
            this.changementTexteStatusBar("Affichage du Shop terminé.");
        }