在 Windows Phone 7 上编码时的方向问题
我编写一个页面并添加
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.