C#里WindowsMediaPlayer控件的playstate属性怎么用

例:if(axWindowsMediaPlayer1.playState==1){…………}这么写为什么不行呢?网上说playState返回int型,是不是错的?... 例:if(axWindowsMediaPlayer1.playState==1)
{
…………
}
这么写为什么不行呢?网上说playState返回int型,是不是错的?
展开
 我来答
匿名用户
2009-12-06
展开全部
我是楼主,这么写就可以了,呵呵,当然要感谢楼上回答的
player.PlayStateChange += new AxWMPLib._WMPOCXEvents_PlayStateChangeEventHandler(player_PlayStateChange);

private void player_PlayStateChange(object sender, AxWMPLib._WMPOCXEvents_PlayStateChangeEvent e)
{
// Test the current state of the player and display a message for each state.
switch (e.newState)
{
case 0: // Undefined
currentStateLabel.Text = "Undefined";
break;

case 1: // Stopped
currentStateLabel.Text = "Stopped";
break;

case 2: // Paused
currentStateLabel.Text = "Paused";
break;

case 3: // Playing
currentStateLabel.Text = "Playing";
break;

case 4: // ScanForward
currentStateLabel.Text = "ScanForward";
break;

case 5: // ScanReverse
currentStateLabel.Text = "ScanReverse";
break;

case 6: // Buffering
currentStateLabel.Text = "Buffering";
break;

case 7: // Waiting
currentStateLabel.Text = "Waiting";
break;

case 8: // MediaEnded
currentStateLabel.Text = "MediaEnded";
break;

case 9: // Transitioning
currentStateLabel.Text = "Transitioning";
break;

case 10: // Ready
currentStateLabel.Text = "Ready";
break;

case 11: // Reconnecting
currentStateLabel.Text = "Reconnecting";
break;

case 12: // Last
currentStateLabel.Text = "Last";
break;

default:
currentStateLabel.Text = ("Unknown State: " + e.newState.ToString());
break;
}
}
N多的肉
2009-12-06 · TA获得超过3541个赞
知道小有建树答主
回答量:2260
采纳率:34%
帮助的人:612万
展开全部
if (this.axWindowsMediaPlayer1.playState.ToString()=="1")
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式