Ejemplo n.º 1
0
 protected override void OnSoundStopped(object sender, SoundStoppedEventArgs e)
 {
     base.OnSoundStopped(sender, e);
 }
Ejemplo n.º 2
0
 private void SoundStoppedEventDispatcher(SoundStoppedEventArgs e)
 {
     var h = Stopped;
     if (h != null)
         h(this, e);
 }
Ejemplo n.º 3
0
 protected virtual void OnSoundStopped(object sender, SoundStoppedEventArgs e)
 {
     //add common logic here...
 }