예제 #1
0
        public MvxMasterDetailPagePresentationAttribute(MasterDetailPosition position = MasterDetailPosition.Detail)
        {
            Position = position;

            // If this page is to be the master, the default behaviour should be that the page is not wrapped
            // in a navigation page. This is not the case for Root or Detail pages where default behaviour
            // would be to support navigation
            if (position == MasterDetailPosition.Master)
            {
                WrapInNavigationPage = false;
            }
        }
예제 #2
0
 public MvxMasterDetailPagePresentationAttribute(MasterDetailPosition position = MasterDetailPosition.Detail)
 {
     Position = position;
 }
 public MvxCustomMasterDetailPagePresentationAttribute(MasterDetailPosition position = MasterDetailPosition.Detail)
     : base(position)
 {
 }