zoukankan      html  css  js  c++  java
  • 旋转wince的桌面的函数

    ChangeDisplaySettingsEx ()
     
    具体内容请看帮助。
    This function changes the settings of the specified display device to the specified graphics mode.
    LONG ChangeDisplaySettingsEx( LPCTSTR lpszDeviceName, LPDEVMODE lpDevMode, HWND hwnd, DWORD dwflags, LPVOID lParam );
     
    When you change the display mode dynamically, the OS sends theWM_SETTINGCHANGE message to all running applications.
    To query for the current orientation, call ChangeDisplaySettingsEx with lpDevMode set to DM_DISPLAYORIENTATION and dwflags set to CDS_TEST. The current orientation will be returned in lpDevMode.
     
    关键参数 - dmDisplayOrientation 有以下取值:
        DMDO_0 不旋转 
            DMDO_90 旋转90度 
            DMDO_180 旋转180度   
            DMDO_270 旋转270度
  • 相关阅读:
    2020.12.15
    2020.12.14
    2020.12.13
    2020.12.11
    2020.12.10
    语音合成标记语言(SSML)
    Skyline查询
    win10 VMware 安装 Linux 虚拟机
    图像梯度计算
    Harris Corner Detection
  • 原文地址:https://www.cnblogs.com/91program/p/5255519.html
Copyright © 2011-2022 走看看