嘿我想知道是否可以使用WPF中的MediaElement做类似的事情: http://img11.hostingpics.net/pics/374632Captur2e.png
就像那样: http://img11.hostingpics.net/pics/403059Capture.png
所以当我调整窗口大小时,默认分辨率保持不变。
由于
答案 0 :(得分:0)
请看下面的代码。它是网格边框中的MediaElement。边框仅用于显示网格已完全填充。运行此代码并调整包含窗口的大小显示MediaElement保留了其内容的宽高比(可通过设置Stretch属性更改的行为)。
<Grid>
<Border BorderThickness="5" BorderBrush="White" Background="Black">
<MediaElement Source="C:\Users\Public\Videos\Sample Videos\Wildlife.wmv"/>
</Border>
</Grid>