示例#1
0
文件: Form1.cs 项目: ronnyil/JME
 private void goButton_Click(object sender, EventArgs e)
 {
     _adapter = new MostlyMusicAdapter();
     a = new albumform();
     _reTagger.CurrentAlbum = (string)albumBox.SelectedItem;
     a.FormClosed+=new FormClosedEventHandler(a_FormClosed);
     BW.RunWorkerAsync(albumBox.SelectedItem);
     progressBar1.Visible = true;
     waitLabel.Visible = true;
     toggleButtons();
 }
示例#2
0
文件: albumform.cs 项目: ronnyil/JME
 public void reinitialize(MostlyMusicAdapter ad, ReTag re)
 {
     this.Text = ad.Query;
     _adapter = ad;
     _module = re;
 }
示例#3
0
文件: Form1.cs 项目: ronnyil/JME
 private void BW_DoWork(object sender, DoWorkEventArgs e)
 {
     MostlyMusicAdapter mm = new MostlyMusicAdapter();
         mm.InitializeComponent((string)e.Argument);
         e.Result = mm.Responses;
 }