我正在我的windows应用商店应用中使用播放器框架
http://playerframework.codeplex.com/
我只想使用它的音频文件(无视频)。现在我希望当用户使用搜索者开始曲目时,暂停/播放,音量是可见的。我实现了当你移动鼠标在它上面,它将显示它不会消失。但我需要在开始时展示它。我该怎么做呢?
在我的应用程序中看起来是这样的
<mmppf:MediaPlayer Name="TrackPlayer" Width="400" Height="50" AudioCategory="BackgroundCapableMedia" AutoHideBehavior="None" IsDurationVisible="True" AutoHide="False" />发布于 2013-01-09 02:14:39
只需设置IsInteractive="True"即可
<mmppf:MediaPlayer Name="TrackPlayer" Width="400" Height="50" AudioCategory="BackgroundCapableMedia" IsInteractive="True" IsDurationVisible="True" AutoHide="False" />https://stackoverflow.com/questions/13583903
复制相似问题