private void button2_Click(object sender, EventArgs e)
{
Dispose();
}
private void button1_Click(object sender, EventArgs e)
{
textBox2.Text = (textBox1.Text + "님. 반갑습니다~ \\r\\n");
if (radioButton1.Checked == true)
textBox2.Text += "당신은 " + radioButton1.Text + "성 이시군요? \\r\\n";
else if (radioButton2.Checked == true)
textBox2.Text += "당신은 " + radioButton2.Text + "성 이시군요? \\r\\n";
textBox2.Text += "연령은 " + comboBox1.Text + " 이시고... \\r\\n";
textBox2.Text += "와! " + listBox1.Text + "를 좋아하시는구나!";
}