我正在尝试在我的应用程序中使用 Microsoft Expression Encoder 4.0。我面临的第一个问题是我需要从 c# 中的 url 捕获流式视频,但在库的示例中,他们使用 WPF,它只有此代码来显示流式视频
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Show Broadcast" Height="350" Width="525">
<Grid>
<MediaElement Name="VideoControl" Source="http://localhost:8080" />
</Grid>
</Window>
如何将此代码转换为 c# 代码,以便在图片框中显示流式视频?