2010-07-27 70 views
0

來自服務器的mp3文件需要超過5分鐘才能在mediaelement中播放。Mediaelement源自服務器(mms :)問題wpf

代碼:

<MediaElement 
      Name="player" 
    Source="{Binding ElementName=lbTrack, Path=SelectedItem.FilePath, NotifyOnSourceUpdated=True,NotifyOnTargetUpdated=True}" 
      UnloadedBehavior="Stop" 
      Volume="{Binding ElementName=volume, Path=Value}" MediaEnded="player_MediaEnded" MediaOpened="player_MediaOpened" 
      LoadedBehavior="Manual" /> 

回答