Example #1
0
 internal void RaiseOnCurrentPlaylistChange(object sender, _WMPOCXEvents_CurrentPlaylistChangeEvent e)
 {
     if ((this.CurrentPlaylistChange != null)) {
         this.CurrentPlaylistChange(sender, e);
     }
 }
Example #2
0
 public virtual void CurrentPlaylistChange(WMPLib.WMPPlaylistChangeEventType change)
 {
     _WMPOCXEvents_CurrentPlaylistChangeEvent currentplaylistchangeEvent = new _WMPOCXEvents_CurrentPlaylistChangeEvent(change);
     this.parent.RaiseOnCurrentPlaylistChange(this.parent, currentplaylistchangeEvent);
 }