zoukankan      html  css  js  c++  java
  • [Winform]Media Player组件全屏播放的设置

    摘要

    在设置程序开始运行时,让视频全屏播放时,直接设置

    windowsMediaPlay.fullScreen = true;

    会报错,代码如下

                    windowsMediaPlay.URL = _videoPath;
                    windowsMediaPlay.Ctlcontrols.play();
                    windowsMediaPlay.fullScreen = true;
                    windowsMediaPlay.ClickEvent += windowsMediaPlay_ClickEvent;
                    windowsMediaPlay.KeyUpEvent += windowsMediaPlay_KeyUpEvent;
                    windowsMediaPlay.StatusChange += windowsMediaPlay_StatusChange;

    错误

    抱着相信微软的心情,就在猜想,可能是位置不对,是不是必须视频在播放中才可以设置全屏?

    所以在视频状态变化的事件中,这样设置

            void windowsMediaPlay_StatusChange(object sender, EventArgs e)
            {
                /*  
                 * 0 Undefined Windows Media Player is in an undefined state.(未定义) 
                   1 Stopped Playback of the current media item is stopped.(停止) 
                   2 Paused Playback of the current media item is paused. When a media item is paused, resuming 
    playback begins from the same location.(停留) 3 Playing The current media item is playing.(播放) 4 ScanForward The current media item is fast forwarding. 5 ScanReverse The current media item is fast rewinding. 6 Buffering The current media item is getting additional data from the server.(转换) 7 Waiting Connection is established, but the server is not sending data. Waiting for session to begin.(暂停) 8 MediaEnded Media item has completed playback. (播放结束) 9 Transitioning Preparing new media item. 10 Ready Ready to begin playing.(准备就绪) 11 Reconnecting Reconnecting to stream.(重新连接)
    */ //判断视频是否已停止播放 if ((int)windowsMediaPlay.playState == 1) { //停顿2秒钟再重新播放 System.Threading.Thread.Sleep(1000); //重新播放 windowsMediaPlay.Ctlcontrols.play(); } else if ((int)windowsMediaPlay.playState == 3) { windowsMediaPlay.fullScreen = true; } }

    MSDN

    Remarks

    For full-screen mode to work properly when embedding the Windows Media Player control, the video display area must have a height and width of at least one pixel. If uiMode is set to "mini" or "full", the height of the control itself must be 65 or greater to accommodate the video display area in addition to the user interface.

    If uiMode is set to "invisible", then setting this property to true raises an error and does not affect the behavior of the control.

    During full-screen playback, Windows Media Player hides the mouse cursor when enableContextMenu equals false and uiMode equals "none".

    If uiMode is set to "full" or "mini", Windows Media Player displays transport controls in full-screen mode when the mouse cursor moves. After a brief interval of no mouse movement, the transport controls are hidden. If uiMode is set to "none", no controls are displayed in full-screen mode.

    Note  Displaying transport controls in full-screen mode requires the Windows XP operating system.
     

    If transport controls are not displayed in full-screen mode, then Windows Media Player automatically exits full-screen mode when playback stops.

    参考

    https://msdn.microsoft.com/en-us/library/windows/desktop/dd562419(v=vs.85).aspx

  • 相关阅读:
    Web Workers 的基本信息
    关于前端框架的一些观点
    解密jQuery内核 DOM操作方法(二)html,text,val
    解密jQuery内核 DOM操作
    解密jQuery内核 DOM操作的核心buildFragment
    解密jQuery内核 DOM操作的核心函数domManip
    前端MVC框架Backbone 1.1.0源码分析(二)
    前端MVC框架Backbone 1.1.0源码分析(一)
    解密jQuery内核 Sizzle引擎筛选器
    解密jQuery事件核心
  • 原文地址:https://www.cnblogs.com/wolf-sun/p/7054473.html
Copyright © 2011-2022 走看看