示例#1
0
        private void btnStartDownload_Clicked(object sender, EventArgs e)
        {
            MusixSongResult Result = CoreCollector.CollectByName(txtSongName.Text);

            DisplayAlert("Song Search", "Found song.", "OK");
            Thread RunT = new Thread(new ParameterizedThreadStart(RunDownload));

            RunT.Start(Result);
            Console.WriteLine("================================================================================================Finish");
        }