protected override void OnSoundPlayed(object sender, SoundPlayedEventArgs e)
 {
     base.OnSoundPlayed(sender, e);
 }
Beispiel #2
0
 private void SoundPlayedEventDispatcher(SoundPlayedEventArgs e)
 {
     var h = Played;
     if (h != null)
         h(this, e);
 }
Beispiel #3
0
 protected virtual void OnSoundPlayed(object sender, SoundPlayedEventArgs e)
 {
     //add common logic here...
 }