a亚洲精品_精品国产91乱码一区二区三区_亚洲精品在线免费观看视频_欧美日韩亚洲国产综合_久久久久久久久久久成人_在线区

首頁 > 編程 > C# > 正文

測試媒體播放類的程序

2023-05-14 16:26:31
字體:
來源:轉載
供稿:網友

在前面的一篇文章中(C#中用API實現MP3等音頻文件的播放類)給出了使用API播放MP3等音頻文件的類,但沒有給出具體的測試方法,在這里給出具體的測試方法。

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;
using System.Text;
using System.IO ;
using clsMCIPlay;

namespace MCIPlay
{
 /// <summary>
 /// Form1 的摘要說明。
 /// </summary>
 public class Form1 : System.Windows.Forms.Form
 {
  private System.ComponentModel.IContainer components;
  private System.Windows.Forms.Timer timer1;
  private System.Windows.Forms.Button Play;
  private System.Windows.Forms.Button Stop;
  private System.Windows.Forms.Button Puase;
  private System.Windows.Forms.Label PlayFileName;
  private System.Windows.Forms.Label Duration;
  private System.Windows.Forms.Label CurrentPosition;
  private System.Windows.Forms.OpenFileDialog openFileDialog1;
  private System.Windows.Forms.Button BrowserFile;
  clsMCI mp = new clsMCI();

  public Form1()
  {
   //
   // Windows 窗體設計器支持所必需的
   //
   InitializeComponent();

   //
   // TODO: 在 InitializeComponent 調用后添加任何構造函數代碼
   //
  }

  /// <summary>
  /// 清理所有正在使用的資源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null)
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

  #region Windows 窗體設計器生成的代碼
  /// <summary>
  /// 設計器支持所需的方法 - 不要使用代碼編輯器修改
  /// 此方法的內容。
  /// </summary>
  private void InitializeComponent()
  {
   this.components = new System.ComponentModel.Container();
   this.Play = new System.Windows.Forms.Button();
   this.PlayFileName = new System.Windows.Forms.Label();
   this.Duration = new System.Windows.Forms.Label();
   this.Stop = new System.Windows.Forms.Button();
   this.Puase = new System.Windows.Forms.Button();
   this.CurrentPosition = new System.Windows.Forms.Label();
   this.timer1 = new System.Windows.Forms.Timer(this.components);
   this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
   this.BrowserFile = new System.Windows.Forms.Button();
   this.SuspendLayout();
   //
   // Play
   //
   this.Play.Location = new System.Drawing.Point(102, 243);
   this.Play.Name = "Play";
   this.Play.Size = new System.Drawing.Size(78, 24);
   this.Play.TabIndex = 0;
   this.Play.Text = "Play";
   this.Play.Click += new System.EventHandler(this.Play_Click);
   //
   // PlayFileName
   //
   this.PlayFileName.AutoSize = true;
   this.PlayFileName.Location = new System.Drawing.Point(12, 15);
   this.PlayFileName.Name = "PlayFileName";
   this.PlayFileName.Size = new System.Drawing.Size(0, 17);
   this.PlayFileName.TabIndex = 1;
   //
   // Duration
   //
   this.Duration.AutoSize = true;
   this.Duration.Location = new System.Drawing.Point(15, 51);
   this.Duration.Name = "Duration";
   this.Duration.Size = new System.Drawing.Size(0, 17);
   this.Duration.TabIndex = 2;
   //
   // Stop
   //
   this.Stop.Location = new System.Drawing.Point(282, 243);
   this.Stop.Name = "Stop";
   this.Stop.Size = new System.Drawing.Size(81, 24);
   this.Stop.TabIndex = 3;
   this.Stop.Text = "Stop";
   this.Stop.Click += new System.EventHandler(this.Stop_Click);
   //
   // Puase
   //
   this.Puase.Location = new System.Drawing.Point(198, 243);
   this.Puase.Name = "Puase";
   this.Puase.Size = new System.Drawing.Size(72, 24);
   this.Puase.TabIndex = 4;
   this.Puase.Text = "Puase";
   this.Puase.Click += new System.EventHandler(this.Puase_Click);
   //
   // CurrentPosition
   //
   this.CurrentPosition.AutoSize = true;
   this.CurrentPosition.Location = new System.Drawing.Point(15, 87);
   this.CurrentPosition.Name = "CurrentPosition";
   this.CurrentPosition.Size = new System.Drawing.Size(0, 17);
   this.CurrentPosition.TabIndex = 5;
   //
   // timer1
   //
   this.timer1.Enabled = true;
   this.timer1.Interval = 1000;
   this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
   //
   // BrowserFile
   //
   this.BrowserFile.Location = new System.Drawing.Point(312, 165);
   this.BrowserFile.Name = "BrowserFile";
   this.BrowserFile.Size = new System.Drawing.Size(87, 24);
   this.BrowserFile.TabIndex = 6;
   this.BrowserFile.Text = "SelectFile";
   this.BrowserFile.Click += new System.EventHandler(this.BrowserFile_Click);
   //
   // Form1
   //
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(433, 287);
   this.Controls.Add(this.BrowserFile);
   this.Controls.Add(this.CurrentPosition);
   this.Controls.Add(this.Puase);
   this.Controls.Add(this.Stop);
   this.Controls.Add(this.Duration);
   this.Controls.Add(this.PlayFileName);
   this.Controls.Add(this.Play);
   this.Name = "Form1";
   this.Text = "Form1";
   this.ResumeLayout(false);

  }
  #endregion

  /// <summary>
  /// 應用程序的主入口點。
  /// </summary>
  [STAThread]
  static void Main()
  {
   Application.Run(new Form1());
  }

  //選擇MP3文件播放
  private void Play_Click(object sender, System.EventArgs e)
  {
   try
   {
    mp.play();
   }
   catch
   {
    MessageBox.Show("出錯錯誤!");
   }
  }

  //暫停播放
  private void Puase_Click(object sender, System.EventArgs e)
  {
   try
   {
    mp.Puase();
   }
   catch
   {
    MessageBox.Show("出錯錯誤!");
   }

  }

  //停止播放
  private void Stop_Click(object sender, System.EventArgs e)
  {
   try
   {
    mp.StopT();
   }
   catch
   {
    MessageBox.Show("出錯錯誤!");
   }
  }

  //每秒顯示一次播放進度
  private void timer1_Tick(object sender, System.EventArgs e)
  {
   CurrentPosition.Text = mp.CurrentPosition.ToString();
  }

  //瀏覽文件
  private void BrowserFile_Click(object sender, System.EventArgs e)
  {
   try
   {
    openFileDialog1.Filter = "*.mp3|*.mp3";
    openFileDialog1.FileName = "";
    if(openFileDialog1.ShowDialog() == DialogResult.OK)
    {
     mp.FileName = openFileDialog1.FileName ;
     PlayFileName.Text = openFileDialog1.FileName ;
     Duration.Text = mp.Duration.ToString() ;
    }
   }
   catch
   {
    MessageBox.Show("出錯錯誤!");
   }
  }
 }
}

本程序在Visual Studio2003,WINXP下運行通過。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 精品国产欧美一区二区三区成人 | 成人av影院| 国产综合久久 | 日韩精品一区二区三区中文在线 | 日韩高清黄色 | 国产一区二区三区高清 | 日本aaaaaa | 黄色大片网站在线观看 | 青草视频在线免费观看 | 国产精品毛片久久久久久 | 亚州综合一区 | 亚洲网站在线观看 | 午夜影院在线免费观看 | 黄av在线免费观看 | 高清av网站| 免费的国产视频 | 在线黄av| 欧美日韩亚洲国产 | 日韩视频免费在线 | 四虎影视最新免费版 | 久久精品国产亚洲a∨蜜臀 性视频网站免费 | 久久狠狠| 日韩在线视频一区 | 九九热视频精品在线 | 久久一区二区三区四区 | 中国av在线 | 一区二区不卡视频 | 一区二区亚洲视频 | 国产成人久久精品麻豆二区 | 国产欧美一区二区精品忘忧草 | 四虎8848精品成人免费网站 | 国产99久久精品 | 91麻豆蜜桃一区二区三区 | 精品一区二区三区日本 | 一区二区网站 | 91久久综合亚洲鲁鲁五月天 | 日韩www.| 久久精品一区二区三区四区 | www久| 在线观看中文 | 久草网站 |