Example #1
0
 void Button_Click(object sender, Decal.Adapter.ControlEventArgs e)
 {
     if (Click != null)
     {
         Click(this, new MVControlEventArgs(this.Id));
     }
 }
Example #2
0
 void Button_Hit(object sender, Decal.Adapter.ControlEventArgs e)
 {
     if (Hit != null)
     {
         Hit(this, null);
     }
 }