在 Windows Phone 7 上编码时的方向问题

发布于 2024-10-11 00:54:21 字数 256 浏览 1 评论 0原文

我编写一个页面并添加

this.SupportedOrientations = SupportedPageOrientation.Portrait | SupportedPageOrientation.Landscape;

到构造函数中。

在弹出消息框并将方向从纵向更改为横向后,我发现消息框下的 UI 没有按预期将方向从纵向更改为横向。

我在代码中是否丢失了什么,或者这是 UI 框架现在的限制?

I write a page and I add

this.SupportedOrientations = SupportedPageOrientation.Portrait | SupportedPageOrientation.Landscape;

in the constructor.

After letting a messagebox popup and change orientation from portrait to landscape, I found that the UI under the messagebox didn’t change orientation from portrait to landscape as expected.

Is there anything I lose in code or this is the limitation of the UI framework now?

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

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

发布评论

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

评论(1

温柔一刀 2024-10-18 00:54:21

MessageBox 是模态的,会阻塞 UI 线程,因此不会处理诸如方向更改之类的事件,但是一旦消息框被关闭,底层 UI 应适应方向更改。

The MessageBox is modal and blocks the UI thread so such events like orientation changed won't be processed however the underlying UI should adapt to the orientation change once the message box is dismissed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文