Ejemplo n.º 1
0
 public FlowDirectionGalleryMDP(FlowDirection direction)
 {
     FlowDirection = direction;
     Flyout        = new FlowDirectionGalleryCP(direction)
     {
         Title = "Flyout", BackgroundColor = Color.Red
     };
     Detail = new NavigationPage(new FlowDirectionGalleryCP(direction)
     {
         Title = "Detail"
     });
     IsPresented = true;
 }
 public FlowDirectionGalleryMDP(FlowDirection direction)
 {
     FlowDirection = direction;
     Master        = new FlowDirectionGalleryCP(direction)
     {
         Title = "Master", BackgroundColor = Color.Red
     };
     Detail = new FlowDirectionGalleryCP(direction)
     {
         Title = "Detail"
     };
     IsPresented = true;
 }