generic.xamlに色々なStyleが組み込みで定義されていますが、その中でもよく使う戻るボタンについて。Windows 8時代は丸に矢印だった戻るボタンがシンプルに矢印だけの四角ボタンになっています。
<Pagex:Class="App13.MainPage"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:local="using:App13"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"mc:Ignorable="d"><StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"><Button Style="{ThemeResource NavigationBackButtonNormalStyle}" /><Button Style="{ThemeResource NavigationBackButtonSmallStyle}" /></StackPanel></Page>
こんなXAMLでこんな見た目になります。