private void bisectoare_MouseClick(object sender, EventArgs e) { Label lb = (Label)sender; if (lb.Text.ToUpper() == "BISECTOARE" || lb.Text.ToUpper() == "BISECTOAREA" || lb.Text.ToUpper() == "BISECTOARELE") { Proprietati_Bisectoare f = new Proprietati_Bisectoare(); f.ShowDialog(); } }
private void bisectoare_MouseClick(object sender, EventArgs e) { Label lb = (Label)sender; if (lb.Text.ToUpper() == "BISECTOARE" || lb.Text.ToUpper() == "BISECTOAREA") { Proprietati_Bisectoare f = new Proprietati_Bisectoare(); f.ShowDialog(); } if (lb.Text.ToUpper() == "ÎNĂLȚIME" || lb.Text.ToUpper() == "ÎNĂLȚIMEA") { Propietati_Inaltime f = new Propietati_Inaltime(); f.ShowDialog(); } if (lb.Text.ToUpper() == "MEDIANA" || lb.Text.ToUpper() == "MEDIANĂ") { Propietati_Mediana f = new Propietati_Mediana(); f.ShowDialog(); } }
//Pagina 6 private void lb3_6_Click(object sender, EventArgs e) { Proprietati_Bisectoare f = new Proprietati_Bisectoare(); f.ShowDialog(); }