private void BTN_OK_Click(object sender, RoutedEventArgs e) // Clic Bouton Ok
        {
            if (CB_Medias.SelectedItem != null)                     // Voir si un élément est sélectionné
            {
                ME_VideoSon.Stop();                                 // Stopper le média actuel

                // Charger le nouveau média
                ComboBoxItem wItem = (ComboBoxItem)CB_Medias.SelectedItem;
                ChargerMedia(wItem.Content.ToString());

                LBL_Message.Visibility = Visibility.Visible;
                LBL_Message.Text       = "Ouverture du média...";

                ME_VideoSon.MediaOpened += new System.Windows.RoutedEventHandler(ME_VideoSon_MediaOpened);
                ME_VideoSon.MediaFailed += new System.EventHandler <System.Windows.ExceptionRoutedEventArgs>(ME_VideoSon_MediaFailed);

                RECT_Bas.Width = 0;

                while (RECT_Bas.Width < LayoutRoot.Width)
                {
                    RECT_Bas.Width++;
                }
            }
        }