您好我正在尝试扩展MediaElement以观看更大的视频,但问题是我无法以任何方式执行此操作,我在设计器中手动执行并且无法正常工作,我尝试手动使用min-height和min-width属性,但视频大小相同。
通过"扩展"我的意思是我希望视频填满MediaElement
。现在它非常小。
来源:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="1028" Width="525">
<Grid>
<MediaElement Height="512" HorizontalAlignment="Left" Margin="12,12,0,0" Name="player" VerticalAlignment="Top" Width="479" MinHeight="800" />
<Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="157,566,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
</Grid>
</Window>
答案 0 :(得分:1)
要让您的内容填满MediaElement
区域,请将Stretch
属性设置为“填充”:
<MediaElement Stretch="Fill" .../>
有关此属性的更多信息和其他有效值,请参阅MSDN。