Exemplo n.º 1
0
 void myCustomButtonUseGenericDelegate1_MyClick(object sender, MyClickEventArgs e)
 {
     MessageBox.Show("I'm clicked " + e.ClickCount.ToString() + " times");
 }
Exemplo n.º 2
0
 void myCustomButton1_MyClick(object sender, MyClickEventArgs e)
 {
     MessageBox.Show("I'm clicked " + e.ClickCount.ToString() + " times");
 }