[Windows Phone 7]UI對螢幕的自適應的處理

來源:互聯網
上載者:User

        對於WP7的Silverlight項目預設Portrait mode而XNA項目預設是Landscape mode的,要想改變這個初始的模式的話,可以通過更改PhoneApplicationPage頁面的SupportedOrientations這個屬性。

        SupportedOrientations屬性有三個枚舉值,分別是:Landscape(支援水平方向)、Portrait(支援垂直方向)、PortraitOrLandscape(支援水平和垂直方向)。

        開發人員也可以通過VS來新增水平或者垂直的新的Page。

        UI想響應螢幕的變化,可以通過PhoneApplicationPage的OrientationChanged事件來處理,通過OrientationChangedEventsArgs類型的參數e的Orientation的值來確定現在手機的方向。其中,Orientation的值是PageOrientation的枚舉值。

PageOrientation的枚舉的定義如下:

    // Summary:    // An enumeration defining the possible orientations of a page.    public enum PageOrientation    {        // Summary:        // No orientation is specified.        None = 0,        //        // Summary:        // Portrait orientation.        Portrait = 1,        //        // Summary:        // Landscape orientation.        Landscape = 2,        //        // Summary:        // Portrait orientation.        PortraitUp = 5,        //        // Summary:        // Portrait orientation.        PortraitDown = 9,        //        // Summary:        // Landscape orientation with the top of the page rotated to the left.        LandscapeLeft = 18,        //        // Summary:        // Landscape orientation with the top of the page rotated to the right.        LandscapeRight = 34,    }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.