1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
private void BoutonOK_Click(object sender, System.EventArgs e)
{
if ( (this.CheminSportif.Text != "") && (this.CheminStructure.Text != "") )
{
[...]
MonAfficheur.Enabled = true;
}
if(cbComparer.Checked)
{
ShowFiltrage sf = new ShowFiltrage(this.parseurFichierSportif.ListePoints,
this.parseurFichierSportif.ListePointsFiltres,
this.parseurFichierSportif.ListePointsFFT,
this.parseurFichierSportif.ListePointsFiltresFFT
);
sf.Visible = true;
//sf.Activate();
//sf.TopLevel = true;
}
}
this.Close();
} |