使用 Windows Media Player 和 Windows Store App C++

Using Windows Media Player with Windows Store App C++

我知道可以用 Visual C# 以某种形式实现 windows 媒体播放器。 相关信息在这里:How to add the libraries and here How to code it.

但我的项目是在 Visual C++ 中,我很难找到如何做同样的事情。它是一个基于 Hearth Rate 蓝牙监视器示例的 windows 商店应用程序。

我的目标是在数据采集发生时播放视频。

答案是Windows应用商店无法处理ActiveX 控件。至少以一种直截了当的方式。

解决方案是将工具箱中的 MediaElement 实施到 XAML 页面中。该元素很容易与 mediaElement.Play() 和 mediaElement.SetSource()

一起使用