How to rotate Windows Mobile

Source: Internet
Author: User

Starting from Windows CE 4.0,DEVMODEStructure has one more attributeDmDisplayOrientationYou can use this attribute to obtain or set the screen rotation mode. The value is as follows.
DMDO_0 is not rotated
DMDO_90 Rotate 90 degrees
DMDO_180 rotate 180 degrees
DMDO_270 rotate 270 degrees

Http://files.cnblogs.com/zuogang/295-29713.gif

 

CallChangeDisplaySettingsExFor example:
DEVMODE devmode = {0 };
Devmode. dmSize = sizeof (DEVMODE );
Devmode. dmDisplayOrientation = DMDO_90; // horizontal mode
Devmode. dmFields = DM_DISPLAYORIENTATION;
ChangeDisplaySettingsEx (NULL, & devmode, NULL, 0, NULL );

The code for getting the current mode is as follows:
DEVMODE devmode = {0 };
Devmode. dmSize = sizeof (DEVMODE );
Devmode. dmFields = DM_DISPLAYORIENTATION;
ChangeDisplaySettingsEx (NULL, & devmode, 0, CDS_TEST, NULL );
The value of devmode. dmDisplayOrientation can be used to determine the current mode.

It is worth noting that the switching mode is not permanent and will be restored to the initial state after the device is restarted.
If you need to retain the switching Screen mode, you can set two key values under HKEY_LOCAL_MACHINE \ System \ GDI \ Rotation in the registry.
Angle-DWORD (0, 90,180,270)
LandscapeMode-DWORD (0, 1)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.