private void button1_Click(object sender, EventArgs e) { FolderBrowserDialog a = new FolderBrowserDialog(); if (a.ShowDialog() == System.Windows.Forms.DialogResult.OK) { try { _reTagger = new ReTag(a.SelectedPath); albumBox.DataSource = _reTagger.AlbumSet.ToList(); foundlabel.Text = "I have found the following albums in that folder,\nSelect the one you would like to edit and press Go "; albumBox.Visible = true; goButton.Visible = true; } catch (Exception retagEx) { MessageBox.Show(retagEx.Message); } } }
public void reinitialize(MostlyMusicAdapter ad, ReTag re) { this.Text = ad.Query; _adapter = ad; _module = re; }