본문 바로가기

TechLog

WP7 앱에서 가로/세로 방향 지원하기

WP7의 실버라이트 앱에서 가로/세로 방향 전환을 지원하려면 SupportedOrientations 어트리뷰트를 사용한다. 실버라이트 페이지를 나타내는 xaml 파일(실버라이트 프로젝트를 생성하면 처음에 존재하는 MainPage.xaml와 같은 파일)을 열고, PhoneApplicationPage 루트 태그의 SupportedOrientations 어트리뷰트를 변경하면 된다.

SupportedOrientations 어트리뷰트는 SupportedPageOrientation이라는 열거형 타입인데, 이 타입에는 Portrait, Landscape, PortraitOrLandscape 멤버가 포함되어 있다. Portrait, Landscape가 각각 세로, 가로 방향을 의미하며, 만약 가로/세로 방향 전환을 지원하려면 PortraitOrLandscape 멤버를 사용하자.