예제 #1
0
파일: Lutea.cs 프로젝트: gageas/lutea
 public static void QueueStop()
 {
     if (IsPlaying)
     {
         AppCore.QueuePlaylistItem(AppCore.QUEUE_STOP);
     }
 }
예제 #2
0
파일: Lutea.cs 프로젝트: gageas/lutea
 public static bool QueueNext(int index)
 {
     if (IsPlaying)
     {
         return(AppCore.QueuePlaylistItem(index));
     }
     else
     {
         return(AppCore.PlayPlaylistItem(index));
     }
 }
예제 #3
0
파일: Lutea.cs 프로젝트: gageas/lutea
 public static void QueueClear()
 {
     AppCore.QueuePlaylistItem(AppCore.QUEUE_CLEAR);
 }