public Form_AfficheurDeSujet(Sujet sujet, CommunicationSerie communicationSerie, FenetrePrincipale parent) { InitializeComponent(); this.sujet = sujet; this.indiceEtapeCourante = 0; this.fenetreCourante = null; this.communicationSerie = communicationSerie; this.parent = parent; this.laFermetureEstUnChoix = true; }
private void lancerSujet(Sujet s) { if (s == null) return; Form_AfficheurDeSujet f = new Form_AfficheurDeSujet(s, this.communicationSerie, this); this.Visible = false; f.Show(); }