private void DeleteBtn_Click(object sender, EventArgs e)
        {
            DBO.deletePlaylist(Playlist);
            DBO.loadUserData();
            MessageBox.Show("Playlist has been deleted.", "Success");

            PlaylistsScreen PS = new PlaylistsScreen();

            PS.Show();
            this.Close();
        }
Exemplo n.º 2
0
        private void CreatePlaylistForm_FormClosed(object sender, FormClosedEventArgs e)
        {
            PlaylistsScreen PS = new PlaylistsScreen();

            PS.Show();
        }