Windows Phone 8.1 - Page Navigation

前端 未结 4 1695
无人共我
无人共我 2020-12-01 05:11

Coming from Windows Phone 8 I have never thought there will be a lot of changes done to the Windows Phone 8.1 code. Basically I\'m just wondering h

4条回答
  •  误落风尘
    2020-12-01 05:58

    // Navigation Without parameters
    
    this.Frame.Navigate(typeof(SecondPage));
    
    
    
    // Navigation with parameters
    
    this.Frame.Navigate(typeof(SecondPage),MyParameters);
    

提交回复
热议问题