示例#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);
 }