안녕하세요 c# 공부중인 학생입니다.
저번글에서 본삭금을 걸어야한다는 말을 듣고 이번엔 본삭금으로 작성했습니다.
WFA로 라디오버튼 설정하던도중 라디오버튼의 이벤트 핸들러를 checkedchanged가 아니라 click 이라는 이벤트 핸들러를 써야한다는군요.
이게 무슨말인가요?
과제에는 "Do not use the default event handler for either radio button (CheckedChanged) but use Click instead." 라고 합니다.
라디오 버튼을 더블클릭하면
private void radioButton1_CheckedChanged( object sender, EventArgs e)
{
이거해라
}
이런식으로 나오는데 뭘 바꿔야 하는건가요?
private void radioButton1_Click( object sender, EventArgs e)
{
이거해라
}
이런식으로 바꾸는건가요? 바꾸는 이유가 뭔가요?