mirror of
https://github.com/wu736139669/SmallGame_Cocos2dx.git
synced 2026-08-05 06:23:09 +00:00
31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
<Page
|
|
x:Class="HelloCpp.MainPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:HelloCpp"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
<SwapChainBackgroundPanel x:Name="SwapChainPanel"></SwapChainBackgroundPanel>
|
|
<Page.BottomAppBar>
|
|
<AppBar Padding="10,0,10,0">
|
|
<Grid>
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
|
|
<Button Style="{StaticResource AppBarButtonStyle}"
|
|
Tag="Previous"
|
|
AutomationProperties.AutomationId="PreviousAppBarButton" Content=""
|
|
AutomationProperties.Name="Previous"
|
|
Click="OnPreviousPressed"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<Button Style="{StaticResource AppBarButtonStyle}"
|
|
Tag="Next"
|
|
AutomationProperties.AutomationId="NextAppBarButton" Content=""
|
|
AutomationProperties.Name="Next"
|
|
Click="OnNextPressed"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</AppBar>
|
|
</Page.BottomAppBar>
|
|
</Page>
|