2017-03-10 4 views

답변

0

기본적으로 불가능합니다. 시도해 볼 수 있습니다 Right Master Detail Page

public RightSideMasterPage() 
{ 
    InitializeComponent(); 
    // You must set IsFullScreen in this case, 
    // otherwise you need to set HeightRequest, 
    // just like the QuickInnerMenu sample 
    this.IsFullScreen = true; 
    // You must set WidthRequest in this case 
    this.WidthRequest = 250; 
    this.MenuOrientations = MenuOrientation.RightToLeft; 

    // You must set BackgroundColor, 
    // and you cannot put another layout with background color cover the whole View 
    // otherwise, it cannot be dragged on Android 
    this.BackgroundColor = Color.White; 

    // This is shadow view color, you can set a transparent color 
    this.BackgroundViewColor = Color.FromHex ("#CE766C"); 
}