我已经有了按钮事件处理程序。但是我不知道btn_click
事件的属性,所以当我选择一个按钮时,我可以唯一地识别它们
private void buttonSelect()
{
switch(GlobalVariables.buttonSets){
case 0:
button click event here
break;
case 1:
second button click event here
break;
}
}