画面遷移
ボタンをクリックすると遷移先のPageAが表示されます。
新規プロジェクトを作成します。メニューバーから「ファイル」をクリック→「新規作成」にマウスオーバー→「プロジェクト」をクリックします。
プロジェクト名はScreenPageという名前でプロジェクトを作成します。
画面遷移先のページを追加するにはソリューションエクスプローラーのプロジェクト名の位置で右クリック→「追加」→「新しい項目」をクリックします。
またはソリューションエクスプローラーのプロジェクト名またはプロジェクト内のファイルを選択した状態で上部メニューバーの「プロジェクト」→「新しい項目の追加」からも追加可能です。
「新しい項目の追加」ポップアップウィンドウが機能しますので、「空白のページ」を選択し、「PageA.xaml」と名前を付けます。画面右下の「追加」をクリックします。
PageA.xamlがソリューションエクスプローラーに追加されました。
<Page
x:Class="ScreenPage.PageA"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ScreenPage"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource
ApplicationPageBackgroundThemeBrush}">
<TextBlock x:Name="textBlock" HorizontalAlignment="Left"
Margin="120,205,0,0" TextWrapping="Wrap" Text="PageA" VerticalAlignment="Top" Width="122" Height="35" FontSize="32" TextAlignment="Center"/>
</Grid>
</Page>
<Page
x:Class="ScreenPage.PageA"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ScreenPage"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource
ApplicationPageBackgroundThemeBrush}">
<TextBlock x:Name="textBlock" HorizontalAlignment="Left"
Margin="120,205,0,0" TextWrapping="Wrap" Text="PageA" VerticalAlignment="Top" Width="122" Height="35" FontSize="32" TextAlignment="Center"/>
</Grid>
</Page>
▫️参考ページ
コメントをお書きください