예제 #1
0
 void myCustomButtonUseGenericDelegate1_MyClick(object sender, MyClickEventArgs e)
 {
     MessageBox.Show("I'm clicked " + e.ClickCount.ToString() + " times");
 }
예제 #2
0
파일: frmMain.cs 프로젝트: shouzhuo1/CSharp
 void myCustomButton1_MyClick(object sender, MyClickEventArgs e)
 {
     MessageBox.Show("I'm clicked " + e.ClickCount.ToString() + " times");
 }