예제 #1
0
파일: Form1.cs 프로젝트: ronnyil/JME
        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);
                }

            }
        }
예제 #2
0
파일: albumform.cs 프로젝트: ronnyil/JME
 public void reinitialize(MostlyMusicAdapter ad, ReTag re)
 {
     this.Text = ad.Query;
     _adapter = ad;
     _module = re;
 }