1

注意:此应用程序专为触控设备 (MS Surface Hub) 而设计

我的 Windows 窗体包含axWindowsMediaPlayer组件。我已经创建了一个播放列表,并且可以在播放列表中循环播放媒体文件。但是,我希望我的 axWindowsMediaPlayer 播放列表在 5 秒(仅用于测试/调试目的的时间限制)不活动(更准确地说没有用户输入)后暂停,并显示一个对话框,询问我是否希望继续。

以下是我设置timer_Tick事件的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace TimerDemo
{
  public partial class Form1 : Form
  {
    [DllImport("user32.dll")]
    public static extern Boolean GetLastInputInfo(ref tagLASTINPUTINFO plii);

    public struct tagLASTINPUTINFO
    {
      public uint cbSize;
      public Int32 dwTime;
    }

    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        axWindowsMediaPlayer1.Ctlenabled = true;
        var pl = axWindowsMediaPlayer1.playlistCollection.newPlaylist("MyPlaylist");
        pl.appendItem(axWindowsMediaPlayer1.newMedia(@"C:\ABC\abc1.mp4"));
        pl.appendItem(axWindowsMediaPlayer1.newMedia(@"C:\ABC\abc2.mp4"));
        axWindowsMediaPlayer1.currentPlaylist = pl;
        axWindowsMediaPlayer1.Ctlcontrols.play();
    }

    private void axWindowsMediaPlayer1_PlayStateChange(object sender, AxWMPLib._WMPOCXEvents_PlayStateChangeEvent e)
    {
        if (e.newState == 8)   //Media Ended
        {                
        }
    }

    private void timer1_Tick(object sender, EventArgs e)
    {
        tagLASTINPUTINFO LastInput = new tagLASTINPUTINFO();
        Int32 IdleTime;
        LastInput.cbSize = (uint)Marshal.SizeOf(LastInput);
        LastInput.dwTime = 0;

        if (GetLastInputInfo(ref LastInput))
        {
            IdleTime = System.Environment.TickCount - LastInput.dwTime;                
            if (IdleTime > 5000)
            {
                axWindowsMediaPlayer1.Ctlcontrols.pause();
                timer1.Stop();
                MessageBox.Show("Do you wish to continue?");
            }
            else
            {
            }
            timer1.Start();
            axWindowsMediaPlayer1.Ctlcontrols.play();
        }
    }
  }
}

使用此代码,应用程序不会进入timer1_Tick事件。

查询:

  1. e.newState == 3 (播放状态)是否被axWindowsMediaPlayer视为输入?
  2. 如何确保应用程序进入timer1_Tick事件?

如果我删除axWindowsMediaPlayer部分代码,那么 timer1_Tick 事件就会响应。

4

1 回答 1

1

为了让您的应用程序进入timer_Tick事件,您首先需要启动计时器

替换以下代码:

public Form1()
{
    InitializeComponent();
}

具有以下内容:

public Form1()
{
    InitializeComponent();
    timer1.Start();
}

这应该适合你。

于 2016-02-01T11:19:30.477 回答