Esempio n. 1
0
 protected virtual void OnPlayFile(PlayFileEventArgs e)
 {
     if (PlayFile != null)
     {
         PlayFile(this, e);
     }
 }
Esempio n. 2
0
 void mplayer_PlayFile(Object sender, PlayFileEventArgs e)
 {
     Linha_tempo.Maximum = (int)(mplayer.AudioLength / 1000);
     timer.Enabled       = true;
 }
Esempio n. 3
0
 protected virtual void OnPlayFile(PlayFileEventArgs pea)
 {
     if (PlayFile != null) PlayFile(this, pea);
 }
Esempio n. 4
0
 void mplayer_PlayFile(Object sender, PlayFileEventArgs e)
 {
     trackBar1.Maximum = (int)(mplayer.AudioLength / 1000);
     this.Text         = "Playing " + mplayer.FileName;
     timer1.Enabled    = true;
 }