C#调用ActiveX控件编写播放器时,遇到了不少问题!发现MS.NET2003中缺少对一些动态链接库的引用!在C#调用ActiveX控件等多媒体控件时,需要用到的MediaPlayer.dll 和 AxMediaPlayer.dll需要自己生成。首先用下面的命令为媒体播放器控件:msdxm.ocx 生成 MediaPlayer.dll 和 AxMediaPlayer.dll。
aximp c:\winnt\system32\msdxm.ocx
而通常msdxm.ocx中的ActiveX控件都未注册!再运行regsvr32 msdxm.ocx手动注册便生成需要的动态连接库文件.在项目中添加对MediaPlayer.dll 和 AxMediaPlayer.dll的引用,并在程序中插入:using MediaPlayer便完成了整个调用过程!
C#调用ActiveX控件源程序代码如下:
- usingSystem;
- usingSystem.Drawing;
- usingSystem.Collections;
- usingSystem.ComponentModel;
- usingSystem.Windows.Forms;
- usingSystem.Data;
- usingMediaPlayer;
- namespaceAdvancePlayer
- {
- /**////<summary>
- ///Form1的摘要说明。
- ///</summary>
- publicclassForm1:System.Windows.Forms.Form
- {
- privateAxMediaPlayer.AxMediaPlayeraxWindowsMediaPlayer1;
- privateSystem.Windows.Forms.OpenFileDialogopenFileDialog1;
- privateSystem.Windows.Forms.MainMenumainMenu1;
- privateSystem.Windows.Forms.MenuItemmenuItemOpen;
- privateSystem.Windows.Forms.MenuItemmenuItemClose;
- privateSystem.Windows.Forms.MenuItemmenuItemInitSize;
- privateSystem.Windows.Forms.MenuItemmenuItemFullScreen;
- privateSystem.Windows.Forms.MenuItemmenuItemShowAudioCtrl;
- privateSystem.Windows.Forms.MenuItemmenuItemShowPositionCtrl;
- privateSystem.Windows.Forms.MenuItemmenuItemShowTrackbarCtrl;
- privateSystem.Windows.Forms.MenuItemmenuItemFile;
- privateSystem.Windows.Forms.MenuItemmenuItemVideo;
- privateSystem.Windows.Forms.MenuItemmenuItemWindow;
- /**////<summary>
- ///必需的设计器变量。
- ///</summary>
- privateSystem.ComponentModel.Containercomponents=null;
- publicForm1()
- {
- //
- //Windows窗体设计器支持所必需的
- //
- InitializeComponent();
- //
- //TODO:在InitializeComponent调用后添加任何构造函数代码
- //
- }
- /**////<summary>
- ///清理所有正在使用的资源。
- ///</summary>
- protectedoverridevoidDispose(booldisposing)
- {
- if(disposing)
- {
- if(components!=null)
- {
- components.Dispose();
- }
- }
- base.Dispose(disposing);
- }
【编辑推荐】