0
とありがとうございました。私はVisual Studio 2015を使用しており、2ページ、MainPage.xamlとMeds.xamlの間を移動しようとしています。MainPage.xamlでは、このボタンを使ってMeds.xamlにナビゲートします。 MainPage.xaml.csファイルでWindowsでのナビゲーションUniversal Apps 10 Not Working(空白ページへ)
<Button x:Name="button_meds" Content="Meds" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="268,405,0,0" FontSize="18.667" Click="button_meds_Click"/>
、私は単にこの
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>
私はエラーは表示されませんが、ボタンをクリックすると、私は白いページになります。私が間違っていることを確認していない、解決策を探しているが、何も動作していないようだ。
ありがとうございました!