Example #1
0
        //Informations sur la progression de la sauvegarde
        private void backgroundWorker_ProgressChanged(object sender, ProgressChangedEventArgs e)
        {
            string fichierscopies = s.getInfosCopie()[0];

            this.lbAvancementSauvegarde.Text = fichierscopies;
            this.lbNomFichier.Text           = s.getInfosCopie()[1];
        }
Example #2
0
 public SaveViewer(Save save, MainForm mf)
 {
     InitializeComponent();
     this.nb = 0;
     this.s = save;
     save.setBgwk(this.backgroundWorker);
     this.backgroundWorker.RunWorkerAsync(s.getInfosCopie());
     this.lbAvancementSauvegarde.Text = "0";
     this.mainform = mf;
 }
Example #3
0
 public SaveViewer(Save save, MainForm mf)
 {
     InitializeComponent();
     this.nb = 0;
     this.s  = save;
     save.setBgwk(this.backgroundWorker);
     this.backgroundWorker.RunWorkerAsync(s.getInfosCopie());
     this.lbAvancementSauvegarde.Text = "0";
     this.mainform = mf;
 }