コード例 #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");
 }