1. 이벤트의 필요한 함수를 같은 이름으로 정한다..
예 : tabButton_Click
private void tabButton_Click(object sender, EventArgs e)
{
((Button)sender).Text = "asdf";
}
다음검색
1. 이벤트의 필요한 함수를 같은 이름으로 정한다..
예 : tabButton_Click
private void tabButton_Click(object sender, EventArgs e)
{
((Button)sender).Text = "asdf";
}