4

注:所有代码已被严重简化。

问题

暂停/恢复后未设置 MediaElement 源。设置源后,CurrentState 快速更改为“已关闭”。

我正在处理 MediaFailed 事件——它不会触发。我也在处理 MediaOpened 事件,它也不会触发。

细节

我有以下方法可以更新 MediaElement 的源。只要应用程序在暂停后尝试恢复,它就可以很好地工作。

  private async void UpdateMediaElementSource(object sender, EventArgs e)
  {
     var videoSource = this.DefaultViewModel.CurrentSource; // a string
     var file = await StorageFile.GetFileFromPathAsync(videoSource);
     var videoStream = await file.OpenAsync(FileAccessMode.Read);

     this.videoMediaElement.SetSource(videoStream, file.ContentType);
     // The above line works many times as long as the app is not trying to Resume.
  }

当应用程序暂停时,它会调用SaveState方法:

  protected async override void SaveState(Dictionary<String, Object> pageState)
  {
     pageState["MediaElementSource"] = this.DefaultViewModel.CurrentSource;

     // I also made the videoStream global so I can dispose it — but no dice.
     this.videoStream.Dispose();
     this.videoStream = null;
  }

当应用程序恢复时,它会调用LoadState方法:

  protected async override void LoadState(Object navigationParameter, Dictionary<String, Object> pageState)
  {
     string source = string.Empty;
     if (pageState != null)
     {
        if (pageState.ContainsKey("MediaElementSource"))
        {
           source = (string)pageState["MediaElementSource"];
        }
     }

     var document = PublicationService.GetDocument(this.currentDocumentIdNumber);

     this.DefaultViewModel = new DocumentViewModel(document);
     this.DefaultViewModel.CurrentMarkerSourceChanged += UpdateMediaElementSource;

     if (!string.IsNullOrEmpty(source))
     {
        // This causes the UpdateMediaElementSource() method to run.
        this.DefaultViewModel.CurrentSource = source;
     }
  }

我很感激在这个问题上的任何帮助。如果您需要更多详细信息,请告诉我。

4

1 回答 1

3

因此,事实证明 mediaElement 的 Source 在添加到可视化树之前就已经设置好了。

通常,执行此操作时这不是问题:

mediaElement.Source = whatever;

但是当你这样做时这是一个问题:

mediaElement.SetSource(stream, MimeType);

结论

当您调用 SetSource(...) 时,请确保您的 MediaElement 是 VisualTree 的一部分。

让我的上述代码工作的一种简单方法是添加一个全局布尔值,一旦事件触发,该布尔值设置为true 。mediaElement.Loaded然后,在调用 的代码中SetSource(),将其包装在一个if(_mediaElementLoaded)块中。

于 2013-10-16T19:58:21.537 回答