private void ExitBtn_Click(object sender, EventArgs e)
        {
            ViewPlaylistScreen VPS = new ViewPlaylistScreen(Playlist);

            VPS.Show();
            this.Close();
        }
        private void CollaboratorForm_FormClosed(object sender, FormClosedEventArgs e)
        {
            ViewPlaylistScreen VPS = new ViewPlaylistScreen(Playlist);

            VPS.Show();
        }