Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

ナビゲーションとページ(マークアップその2)

前回(以下のエントリー)と同じ機能をNavigationWindowの定義を省略して実装します。
ナビゲーションとページ(マークアップ) - プログラマーな日々
前回と同じ機能をマークアップで実装します。 ...

App.xaml

App.xamlだけが変わります。

<Application x:Class="HelloWorld.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="Page1.xaml">   <!-- ページを直接表示する -->
</Application>

App実行

ページ1


ページ2