timer1_Tick事件发生在存在axWindowsMediaPlayer的WinForms C#中
本文关键字:axWindowsMediaPlayer WinForms 存在 Tick 事件 timer1 | 更新日期: 2023-09-27 18:30:01
注意:此应用程序将为触摸设备(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
事件。
查询:
axWindowsMediaPlayer
中的e.newState == 3
(播放状态)是否被视为输入- 如何确保应用程序进入
timer1_Tick
事件
如果我删除代码的axWindowsMediaPlayer
部分,那么timer1_Tick事件正在响应。
为了让应用程序进入timer_Tick
事件,您首先需要启动计时器。
更换以下代码:
public Form1()
{
InitializeComponent();
}
带有以下内容:
public Form1()
{
InitializeComponent();
timer1.Start();
}
这对你来说应该很好。