示例#1
0
        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();
            }
        }
示例#2
0
        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();
            }
        }
示例#3
0
        //Pagina 6
        private void lb3_6_Click(object sender, EventArgs e)
        {
            Proprietati_Bisectoare f = new Proprietati_Bisectoare();

            f.ShowDialog();
        }