0
您好,我正在使用windows phone 8.1 [RT]應用程序,我只是簡單地瀏覽頁面。但我發現,我們可以在XAML中使用Frame
也是這樣在Windows Phone 8.1中導航的最佳實踐[RT] xaml
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="120"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Border Background="White">
</Border>
<Button Content="next" Click="Button_Click" Background="Black" />
<Grid Grid.Row="1">
<Frame x:Name="Page1Frame" Background="Black" >
<StackPanel>
<Rectangle Height="100" Width="100" Fill="Red" Margin="5" />
<Rectangle Height="100" Width="100" Fill="Red" Margin="5" />
<Rectangle Height="100" Width="100" Fill="Red" Margin="5" />
<Rectangle Height="100" Width="100" Fill="Red" Margin="5" />
</StackPanel>
</Frame>
</Grid>
</Grid>
和瀏覽此幀像這樣
private void Button_Click(object sender, RoutedEventArgs e)
{
Page1Frame.Navigate(typeof(BlankPage1));
}
在這個例子中我120身高電網保持相同,只是導航幀新的選項。 我只想知道哪個是最佳實踐使用? 謝謝。