设计“景观应用程序” 对于掌上电脑

发布于 2024-07-26 22:44:21 字数 129 浏览 6 评论 0原文

我想为袖珍电脑创建一个应用程序。

其中一个特点是用户需要将袖珍电脑逆时针旋转 90 度才能正常操作应用程序。

如何使用 Visual Studio 设计“逆时针旋转”应用程序? VS中有我缺少的选项吗?

I would like to create an app for a pocket pc.

One of the features is that the user should rotate the pocket pc 90 degrees counterclockwise to opearate normally the app

How can someone design a "counterclockwise rotated" application with Visual studio?
Is there any option in VS that i am missing?

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

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

发布评论

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

评论(1

等风来 2024-08-02 22:44:21

在您的项目中,添加对 Microsoft.WindowsCE.Forms 的引用。 接下来,添加一个表格并将其尺寸设为 320(宽)x 240(高)。 添加“使用 Microsoft.WindowsCE.Forms;” 到 Program.cs 文件的顶部。 在您的 Main() 方法中(在加载表单之前)添加以下行:(

SystemSettings.ScreenOrientation = ScreenOrientation.Angle90;

可能是您想要的 Angle270 - 我不记得了)。 当您的应用程序关闭时,您可能希望将方向设置回纵向。

In your project, add a reference to Microsoft.WindowsCE.Forms. Next, add a form and make it 320 (w) x 240 (h). Add "using Microsoft.WindowsCE.Forms;" to the top of your Program.cs file. In your Main() method (before the form is loaded) add this line:

SystemSettings.ScreenOrientation = ScreenOrientation.Angle90;

(it may be Angle270 you want - I don't remember offhand). When your app closes, you'll probably want to set the orientation back to Portrait.

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