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