소년포비의 세계정복!!

Windows mobile 화면 회전 본문

윈도우폰 세상/Windows Phone

Windows mobile 화면 회전

소년포비 2009. 10. 11. 02:21

C# 에서 화면을 회전 시키는 -_-;;

 

먼저 using Microsoft.WindowsCE.Forms.dll 참조추가 하고

 

코드는 단 한줄...;;

         private static void screenRotation()
        {
            if (SystemSettings.ScreenOrientation == ScreenOrientation.Angle0)
                SystemSettings.ScreenOrientation = ScreenOrientation.Angle90;
            else
                SystemSettings.ScreenOrientation = ScreenOrientation.Angle0;
        }

'윈도우폰 세상 > Windows Phone' 카테고리의 다른 글

전화번호 가져오기(C#)  (0) 2009.10.21
[C#]PDA개발시 필수사항들~!!  (0) 2009.10.11
Windows mobile SQL 연결   (0) 2009.10.11
[C#]PDA 실시간 TV 보기  (0) 2009.10.11
Windows Mobile / 인터넷 연결하기  (0) 2009.10.07