예제 #1
0
 public ResultatsBarreProg(Resultats r)
 {
     this.WindowStartupLocation = WindowStartupLocation.CenterScreen;
     InitializeComponent();
     resu = r;
     this.Update();
 }
예제 #2
0
        private void Launch()
        {
            var model = buildModel();

            Task.Delay(1);

            if (model != null)
            {
                if (r != null)
                {
                    r.Close();
                }
                r = new Resultats(Entrs, model, mcmcParams, this);
                r.Show();
            }
        }