示例#1
0
 private void toWindowsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (vlc_url != null)
     {
         try
         {
             axVLCPlugin21.playlist.stop();
         }
         catch (Exception ex)
         {
             error_log(ex);
         }
         isshow = false;
         VLCForm vform = new VLCForm(this, vlc_url);
         this.Hide();
         vform.Show();
     }
 }
示例#2
0
 private void toWindowsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (vlc_url != null)
     {
         try
         {
             axVLCPlugin21.playlist.stop();
         }
         catch (Exception ex)
         {
             error_log(ex);
         }
         isshow = false;
         VLCForm vform = new VLCForm(this,vlc_url);
         this.Hide();
         vform.Show();
     }
     
 }