private void btn_show_Click(object sender, EventArgs e)
{
lbl_show.Text = txt.Text;
}
using System;
namespace Projcet
{
}
클래스
,구조체
,인터페이스
,델리케이트
,열거형
using System.Media;
이렇게 쓰면 됨.Class & Initialize
namespace Project
{
pubilc partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btn_show_Click(object sender, EventArgs e)
{
lbl_show.Text = txt.Text;
}
}
}