루트 값 본문

[PL]/C# & WPF

루트 값

객과 함께. 2010. 7. 31. 00:33

 private void Form1_Load(object sender, EventArgs e)
 {
            this.Text = "[수학함수] 루트 예제 프로그램";
            this.button1.Text = "확 인";
            this.button2.Text = "종 료";
            this.textBox1.Text = "";
            this.textBox2.Text = "";
            this.label1.Text = "";
 }

 private void button1_Click(object sender, EventArgs e)
 {          
            Form1 f = new Form1();
            double T2 = f.TextBoxValue(a);
            textBox2.Text = Convert.ToString(T2);
            labelView();
 }

      
private void labelView()
{      
            label1.Text = "√" + Convert.ToString(a) + " 값은 :";
            textBox1.Text = "";
            a = 0.0;
            textBox1.Focus();
}

public double TextValue()
{
            a = Convert.ToDouble(textBox1.Text);
            return a;           
}

 

private double TextBoxValue(double a)
{
            b =  Math.Sqrt(a);
            return b;
}

private void button2_Click(object sender, EventArgs e)
{
            Boolean BoolYN = MessageBox.Show("프로그램을 종료 합니다..", "프로그램 종료", MessageBoxButtons.YesNo) != DialogResult.No;

            if (BoolYN == true)
                Application.Exit();
}

 

 

[ 실행 결과 ]

Debug.zip

 

 

 

Debug.zip
0.01MB

'[PL] > C# & WPF' 카테고리의 다른 글

visual Basic에서 작성한 dll 화일을 c#에서 적용  (0) 2010.08.16
Thread   (0) 2010.08.03
Math 예제   (0) 2010.07.15
Math 멤버  (0) 2010.07.15
[스크랩] VS2008로 작성한 C#프로젝트를 VS2005에서 열기  (0) 2010.07.08