2016-06-13 63 views
0

並且謝謝。我正在使用Visual Studio 2015並嘗試在2頁之間導航,MainPage.xaml和Meds.xaml在MainPage.xaml上,我將此按鈕導航到Meds.xaml。導航Windows通用應用程序10不工作(帶我到空白頁)

<Button x:Name="button_meds" Content="Meds" HorizontalAlignment="Left"  VerticalAlignment="Top" Margin="268,405,0,0" FontSize="18.667" Click="button_meds_Click"/> 

在MainPage.xaml.cs文件,我只是做了該

private void button_meds_Click(object sender, RoutedEventArgs e) 
    { 

     this.Frame.Navigate(typeof(Meds)); 

    } 

Meds.xaml具有圖像和背景,但我省略低於

從代碼中的標誌和網格
<Page 
x:Class="SQLMobileMoodSwing.Meds" 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
xmlns:local="using:SQLMobileMoodSwing" 
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
mc:Ignorable="d"> 
</Page> 

我沒有收到任何錯誤,但是當我點擊按鈕時,它只是帶我到一個白頁。不知道我做錯了什麼,尋找解決方案,但似乎沒有任何工作。

謝謝!

回答

1

我已經將Meds.xaml創建爲XAML視圖,而不是空白頁。 然後我刪除它並重新創建爲空白頁和BOOM!它的工作原理

相關問題