public form_CD_modif(CD cd_a_modif) { InitializeComponent(); this.id_cd = cd_a_modif.GetId(); this.modif_champ_artiste.Text = cd_a_modif.GetArtiste(); this.modif_champ_commentaire.Text = cd_a_modif.GetCommentaire(); this.modif_champ_duree.Text = cd_a_modif.GetDuree(); this.modif_champ_enstock.Checked = cd_a_modif.GetEnstock(); this.modif_champ_nbpiste.Text = cd_a_modif.GetNbpiste().ToString(); this.modif_champ_prix.Text = cd_a_modif.GetPrix(); this.modif_champ_titre.Text = cd_a_modif.GetTitre(); }