我在windows phone项目上。在这个项目中,我使用我的 Web 服务在我的应用程序中获取 mp4 视频。我想在像这里这样的设备上播放这个媒体;
http://www.windowsphone.com/tr-tr/store/app/goller-cepte/522e5324-15b1-4ef5-82a2-340aaa781087
你看第七张图。我想在那里播放我的媒体。
我做了一个结构来播放这样的媒体,但我不喜欢那样,播放媒体不是健康的选择。
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0" Background="White" DataContext="{Binding Video}">
<MediaElement x:Name="VideoPlayer" AutoPlay="False" IsMuted="False" Stretch="UniformToFill" Margin="10,82,10,307" MediaOpened="VideoPlayerMediaOpened" />
<TextBlock HorizontalAlignment="Left" Foreground="Black" Margin="10,10,0,0" TextWrapping="Wrap" Text="{Binding video_baslik}" VerticalAlignment="Top" Height="67" Width="436"/>
<TextBlock HorizontalAlignment="Left" Foreground="Black" Margin="0,516,0,0" TextWrapping="Wrap" Text="{Binding video_spot}" VerticalAlignment="Top" Height="170" Width="456"/>
<Slider x:Name="MediaProgress" Margin="0,394,0,217" Maximum="1" LargeChange="0.1" ValueChanged="MediaProgressValueChanged"/>
<TextBlock x:Name="ElapsedTime" Foreground="Black" HorizontalAlignment="Left" Margin="10,468,0,0" TextWrapping="Wrap" Text="00:00" VerticalAlignment="Top" Width="60" Height="30" IsHitTestVisible="False"/>
<TextBlock x:Name="RemainingTime" Foreground="Black" HorizontalAlignment="Right" Margin="0,472,10,0" TextWrapping="Wrap" Text="00:00" VerticalAlignment="Top" Width="60" Height="30" IsHitTestVisible="False"/>
</Grid>
谁能帮我播放链接第 7 张图片之类的媒体?
太感谢你了。