我正在制作Windows 8 Metro风格应用。 我希望能够同时运行不同的声音并管理它们。为了实现这个目标,我创建了MediaPlayService,它应该包含允许我这样做的方法。
我在“_mediaElement.SetSource()”之后发现了一个问题我无法改变音量。我打电话给SetVolume,没有任何事情发生。
Initialize(sound);
SetVolume(100);
Play(); --- this sequence works
Initialize(sound);
Play();
SetVolume(100); --- does not work (I can not change the volume during playback)
public void SetVolume(int volume)
{
//_m ediaElement.Volume = Math.Round((double)((double)volume / 100), 2);
double dvolume = Math.Round((double)((double)volume / 100), 2);
_mediaElement.SetValue(MediaElement.VolumeProperty, dvolume);
}
string _mediaPath;
public void Initialize(Sound sound)
{
_mediaElement = new MediaElement();
_mediaPath = sound.FilePath;
_mediaElement.AudioCategory = Windows.UI.Xaml.Media.AudioCategory.Communications;
_mediaElement.IsLooping = true;
_mediaElement.MediaFailed += _mediaElement_MediaFailed;
_mediaElement.RealTimePlayback = true;
}
public async void Play()
{
var pack = Windows.ApplicationModel.Package.Current;
var installedLoction = pack.InstalledLocation;
var storageFile = await installedLoction.GetFileAsync(_mediaPath);
if (storageFile != null)
{
var stream = await storageFile.OpenAsync(Windows.Storage.FileAccessMode.Read);
_mediaElement.SetSource(stream, storageFile.ContentType);
_mediaElement.Play();
}
}
答案 0 :(得分:0)
您的MediaElement不是您网页的VisualTree的一部分。因此,您必须处理那些奇怪的行为,例如设置音量或位置将无法正常工作。
作为解决方案,您可以在XAML文件中创建MediaElement,或者将其从代码隐藏添加到VisualTree(类似于contentGrid.Children.Add(_mediaElement)。在后一种情况下,您可能必须在导航到之前将其删除另一个页面可能会在下次导航时无法播放。