private void Launcher_Options_Arma3(object sender, RoutedEventArgs e)
 {
     if (!this.cfgwindow_open)
     {
         this.cfgwindow_open = true;
         this.cfgwindow      = new Arma3Configs(this, this.a3manager);
         this.cfgwindow.Show();
         this.cfgwindow.Focus();
     }
     else
     {
         this.cfgwindow.Show();
         this.cfgwindow.Focus();
     }
 }
        //-- CallBack des Fenêtres

        public void CallBack_Close_Arma3Configs(){
            this.cfgwindow_open = false;
            this.cfgwindow = null;
        }
 private void Launcher_Options_Arma3(object sender, RoutedEventArgs e)
 {
     if (!this.cfgwindow_open)
     {
         this.cfgwindow_open = true;
         this.cfgwindow = new Arma3Configs(this,this.a3manager);
         this.cfgwindow.Show();
         this.cfgwindow.Focus();
     }
     else
     {
         this.cfgwindow.Show();
         this.cfgwindow.Focus();
     }
 }
        //-- CallBack des Fenêtres

        public void CallBack_Close_Arma3Configs()
        {
            this.cfgwindow_open = false;
            this.cfgwindow      = null;
        }