Ejemplo n.º 1
0
 public void MediaForm_Load(object sender, EventArgs e)
 {
     foreach (string x in this._list)
     {
         takeData(x);
     }
     for (int i = 0; i < this._list.Count; i++)
     {
         string       title    = this._title[i];
         string       artist   = this._firstPerformer[i];
         string       album    = this._ablum[i];
         string       duration = this._length[i];
         SongInfoForm temp     = new SongInfoForm(this, i, _list[i], album, title, artist, duration);
         this._songInfo.Add(temp);
         addSongInfo(temp);
     }
     if (this._parent.havePlayed() && !this._firstPlay)
     {
         this.setup(this._parent.getNowPlayIndex());
         if (this._parent.getNowPlayIndex() == 0)
         {
             this._lastPlayed = this._parent.getNowPlayIndex();
         }
     }
 }
Ejemplo n.º 2
0
 private void addSongInfo(SongInfoForm temp)
 {
     temp.TopLevel        = false;
     temp.FormBorderStyle = FormBorderStyle.None;
     temp.Dock            = DockStyle.Top;
     mediaPanel.Controls.Add(temp);
     //mediaPanel.Tag = temp;
     temp.BringToFront();
     temp.Show();
 }
Ejemplo n.º 3
0
 public void addNewSong(List <String> newSongs)
 {
     //check
     if (this._list.Count == 0)
     {
         this._list = newSongs;
     }
     foreach (String x in newSongs)
     {
         takeData(x);
     }
     for (int i = this._list.Count - newSongs.Count; i < this._list.Count; i++)
     {
         string       title    = this._title[i];
         string       artist   = this._firstPerformer[i];
         string       album    = this._ablum[i];
         string       duration = this._length[i];
         SongInfoForm temp     = new SongInfoForm(this, i, _list[i], album, title, artist, duration);
         this._songInfo.Add(temp);
         addSongInfo(temp);
     }
 }