private void btQuitter_Click(object sender, EventArgs e) { this.Hide(); FormListeTricount flt = new FormListeTricount(); flt.Show(); }
private void btSupprimerTricount_Click(object sender, EventArgs e) { DonneesPubliques.SupprimerTricount(DonneesPubliques.GetMonTricount()); this.Hide(); FormListeTricount flt = new FormListeTricount(); flt.Show(); }
private void btValiderUser_Click(object sender, EventArgs e) { if (tbUser.Text.Length > 0) { DonneesPubliques.SetParticipantMoi(new Participant(tbUser.Text)); this.Hide(); FormListeTricount flt = new FormListeTricount(); flt.Show(); } else { MessageBox.Show("Vous n'avez pas rentré de nom !"); } }