示例#1
0
 void pc_PlaylistAdded(IPlaylistContainer pc, PlaylistEventArgs args)
 {
     if (PlaylistAdded != null)
     {
         PlaylistAdded(this, args);
     }
 }
示例#2
0
 protected virtual void OnPlaylistRemoved(PlaylistEventArgs args)
 {
     if (PlaylistRemoved != null)
     {
         PlaylistRemoved(this, args);
     }
 }