格式和视频分辨率类似于 WMP 和 MediaElement WPF

发布于 2024-12-29 23:03:43 字数 372 浏览 2 评论 0原文

嘿,我想知道是否可以使用 WPF 中的 MediaElement 执行类似的操作: http://img11.hostingpics.net/pics/374632Captur2e.png

像这样: http://img11.hostingpics.net/pics/403059Capture.png

所以当我调整我的窗口大小,默认分辨率保持不变。

谢谢

Hey I would like to know if its possible to do something like that with the MediaElement in WPF:
http://img11.hostingpics.net/pics/374632Captur2e.png

And Like that:
http://img11.hostingpics.net/pics/403059Capture.png

So I When I resize my window the Default resolution stay the same.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ヅ她的身影、若隐若现 2025-01-05 23:03:43

看看下面的代码。它是网格边框中的 MediaElement。边框仅用于显示网格已完全填充。运行此代码并调整包含窗口的大小表明 MediaElement 很好地保留了其内容的纵横比(可以通过设置 Stretch 属性来更改该行为)。

<Grid>
    <Border BorderThickness="5" BorderBrush="White" Background="Black">
        <MediaElement Source="C:\Users\Public\Videos\Sample Videos\Wildlife.wmv"/>
    </Border>
</Grid>

Just have a look at the code below. It is a MediaElement in a Border in a Grid. The Border is only there to show that the Grid is filled completely. Running this code and resizing the containing window shows that MediaElement well preserves the aspect ratio of its content (a behaviour that may be altered by setting the Stretch property).

<Grid>
    <Border BorderThickness="5" BorderBrush="White" Background="Black">
        <MediaElement Source="C:\Users\Public\Videos\Sample Videos\Wildlife.wmv"/>
    </Border>
</Grid>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文