public AddNewArtistForm(AddSongsForm addsongs, MusicPlayer player) { InitializeComponent(); this.addingSongs = addsongs; this.currentPlayer = player; }
private void btnAddSongs_Click(object sender, EventArgs e) { AddSongsForm addingSongs = new AddSongsForm(this, musicStation); addingSongs.ShowDialog(); }