Inheritance: System.EventArgs
Exemple #1
0
 protected static void OnProtectedStaticEvent(TestEventArgs e)
 {
     if (ProtectedStaticEvent != null)
     {
         ProtectedStaticEvent(null, e);
     }
 }
Exemple #2
0
 public static void OnPublicStaticEvent(TestEventArgs e)
 {
     if (PublicStaticEvent != null)
     {
         PublicStaticEvent(null, e);
     }
 }
Exemple #3
0
 public void OnProtectedEvent(TestEventArgs e)
 {
     if (ProtectedEvent != null)
     {
         ProtectedEvent(this, e);
     }
 }
Exemple #4
0
 public void OnPublicEvent(TestEventArgs e)
 {
     if (PublicEvent != null)
     {
         PublicEvent(this, e);
     }
 }
Exemple #5
0
 public static void StaticHandler(object sender, TestEventArgs e)
 {
     s_value = e.value;
 }
Exemple #6
0
 public void GenericHandler(object sender, TestEventArgs e)
 {
     this.value = e.value;
 }
Exemple #7
0
 public static void StaticHandler(object sender, TestEventArgs e)
 {
     s_value = e.value;
 }
Exemple #8
0
 public void GenericHandler(object sender, TestEventArgs e)
 {
     this.value = e.value;
 }