Exemplo n.º 1
0
        private async void MainWindow_Load(object sender, EventArgs e)
        {
            //spotify.GetSpotifyAPIRef().OnTrackChange += Spotify_OnTrackChange;

            lyricsProvider = new LyricsProvider();
            configWindow   = new ConfigurationWindow();

            Play_PauseButton.Text = !spotify.Playing ? "Pause" : "Play";

            if (await spotify.Connect())
            {
                await InvokeLyricSearch();
            }
        }