Пример #1
0
        private static void TestPlayer2(string file)
        {
            var lst = file.IsDirectory() ? Directory.GetFiles(file, "*", SearchOption.AllDirectories).ToList() : new List <string> {
                file
            };

            var player = new XMediaPlayer(lst);

            player.Play();
            var res = "";

            while (res != "x")
            {
                res = Console.ReadLine();
                float tempo = player.CurrentTempo();
                if (float.TryParse(res, out tempo))
                {
                    player.SetTempo(tempo);
                }
                if (res == "n")
                {
                    player.Next();
                }
                if (res == "p")
                {
                    player.Previous();
                }
                if (res == "s")
                {
                    player.Shuffle();
                }
            }
            player.Stop();
        }
Пример #2
0
 private void btnPrev_Click(object sender, EventArgs e)
 {
     ClearGridSelection();
     player.Previous();
     SetGridSelection();
 }