ここで簡単なものが欠けているのではないかと思いますが、アプリバーに複数のボタンを配置しようとしています。
これが最初のアプリバーのコードです
<common:LayoutAwarePage.TopAppBar>
<AppBar HorizontalAlignment="Left">
<Button x:Name="resetButton" Content="Reset" HorizontalAlignment="Left" VerticalAlignment="Stretch" Click="resetButton_Click" />
</AppBar>
</common:LayoutAwarePage.TopAppBar>
これでこのコードは機能しますが、2番目のボタンを追加したいと思います。
これはかなり簡単にできると思い、次のことを試みました。
<common:LayoutAwarePage.TopAppBar>
<AppBar HorizontalAlignment="Left"> <!-- line 19 -->
<Button x:Name="resetButton" Content="Reset" HorizontalAlignment="Left" VerticalAlignment="Stretch" Click="resetButton_Click" />
<Button x:Name="newButton" Content="NewButton" /> <!-- line 21 -->
</AppBar>
</common:LayoutAwarePage.TopAppBar>
しかし、次のエラーが発生します。
The property "Content" can only be set once. (line 19)
The property "Content" can only be set once. (line 21)
Duplication assignment to the 'Content' property of the 'AppBar' object (line 21)
AppBar
私が見逃しているコントロールに何かがあるかもしれないと思います。2番目のボタンを入れるにはどうすればよいですか?