﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>IT博客-savage</title><link>http://www.cnitblog.com/savage/</link><description /><language>zh-cn</language><lastBuildDate>Tue, 05 May 2026 04:35:20 GMT</lastBuildDate><pubDate>Tue, 05 May 2026 04:35:20 GMT</pubDate><ttl>60</ttl><item><title>旋转Windows Mobile 2003的屏幕</title><link>http://www.cnitblog.com/savage/archive/2005/06/07/298.html</link><dc:creator>savage</dc:creator><author>savage</author><pubDate>Tue, 07 Jun 2005 09:11:00 GMT</pubDate><guid>http://www.cnitblog.com/savage/archive/2005/06/07/298.html</guid><wfw:comment>http://www.cnitblog.com/savage/comments/298.html</wfw:comment><comments>http://www.cnitblog.com/savage/archive/2005/06/07/298.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/savage/comments/commentRss/298.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/savage/services/trackbacks/298.html</trackback:ping><description><![CDATA[<IMG height=19 src="http://www.cnitblog.com/Emoticons/71_71.gif" width=19 border=0>旋转Windows Mobile 2003的屏幕<BR><BR><BR>
<P>切换屏幕旋转模式通过调用 <STRONG><EM>ChangeDisplaySettingsEx</EM></STRONG> 来实现，如：<BR>DEVMODE devmode = {0};<BR>devmode.dmSize = sizeof(DEVMODE);<BR>devmode.dmDisplayOrientation = DMDO_90; //水平模式<BR>devmode.dmFields = DM_DISPLAYORIENTATION;<BR>ChangeDisplaySettingsEx(NULL, &amp;devmode, NULL, 0, NULL);</P>
<P>取得当前模式的代码如下：<BR>DEVMODE devmode = {0};<BR>devmode.dmSize = sizeof(DEVMODE);<BR>devmode.dmFields = DM_DISPLAYORIENTATION;<BR>ChangeDisplaySettingsEx(NULL, &amp;devmode, 0, CDS_TEST, NULL);<BR>通过 devmode.dmDisplayOrientation 的值可以判断当前模式。</P><img src ="http://www.cnitblog.com/savage/aggbug/298.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/savage/" target="_blank">savage</a> 2005-06-07 17:11 <a href="http://www.cnitblog.com/savage/archive/2005/06/07/298.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>