C# axWindowsMediaPlayer怎么播放视频
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# axWindowsMediaPlayer怎么播放视频相关的知识,希望对你有一定的参考价值。
我这是一个KTV的点歌系统的play.cs我想让他能播放视频在应该怎么改
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace KTV
public partial class Play : Form
public Play()
InitializeComponent();
public Play(string strPaht)
InitializeComponent();
strPath = strPaht;
public string strPath = null;
private void button1_Click(object sender, EventArgs e)
private void button1_Click_1(object sender, EventArgs e)
this.axWindowsMediaPlayer1.Ctlcontrols.stop();
private void frmPlay_Load(object sender, EventArgs e)
//播放文件
this.axWindowsMediaPlayer1.URL = strPath;
private void bntExce_Click(object sender, EventArgs e)
this.axWindowsMediaPlayer1.Ctlcontrols.stop();
this.Close();
private void bntZan_Click(object sender, EventArgs e)
if (bntZan.Text == "暂停(&K)")
this.axWindowsMediaPlayer1.Ctlcontrols.pause();
bntZan.Text = "继续(&K)";
else
this.axWindowsMediaPlayer1.Ctlcontrols.play();
bntZan.Text = "暂停(&K)";
private void axWindowsMediaPlayer1_Enter(object sender, EventArgs e)
把这个地址改向你视频的地址啊,如果播放不出视频那就是你的mediaplayer解码器要更新本回答被提问者采纳
vb.net中 AxWindowsMediaPlayer的用法
Private Sub AxWindowsMediaPlayer1_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AxWindowsMediaPlayer1.Enter
filename = "E:\歌\爱是最大权利.mp3"
我要用代码来实现我要播放的歌、电影
以上是关于C# axWindowsMediaPlayer怎么播放视频的主要内容,如果未能解决你的问题,请参考以下文章
C#中axWindowsMediaPlayer1怎么播放mp3文件,能不能给个代码啊
C# axWindowsMediaPlayer播放MP3有时会卡,怎么办?
C#中添加AxWindowsMediaPlayer控件后如何使用 谢谢好心人帮帮忙
C# WINFROM怎么播放声音文件? 我把声音文件放在BIN目录下 结果报错说啥找不到文件