public ContentPageEx() : base()
 {
     PageAnimation = new SlidePageAnimation {
         Duration = 200, Subtype = AnimationSubtype.FromLeft
     };
     //this.Visual = VisualMarker.Material;
 }
 public TransitionViewModel()
 {
     MyPageAnimation = new SlidePageAnimation()
     {
         Duration = AnimationDuration.Long,
         Subtype  = AnimationSubtype.FromTop
     };
     TypeText     = "Slide";
     SubTypeText  = "FromTop";
     DurationText = "Long";
 }