일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 28 | 29 | 30 | 31 |
- SQL
- Django
- tkinter Radio 동적버튼
- flask
- check_password
- graphene-django
- array
- allauth
- GraphQL
- Django-allauth
- python
- FastAPI
- numpy
- for loop
- Today
- Total
객
루트 값 본문
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();
}
[ 실행 결과 ]
'[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 |