mirror of https://github.com/axmolengine/axmol.git
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<Page
|
|
x:Class="CocosAppWinRT.OpenGLESPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:CocosAppWinRT"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<SwapChainPanel x:Name="swapChainPanel">
|
|
<Button x:Name="cocos2d_editbox" Visibility="Collapsed" Height="1">
|
|
<Button.Flyout>
|
|
<Flyout x:Name="cocos2d_editbox_flyout">
|
|
<Grid VerticalAlignment="Top" x:Name="cocos2d_editbox_grid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="120" />
|
|
<ColumnDefinition Width="120" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button x:Name="cocos2d_editbox_done" Grid.Column="1" VerticalAlignment="Center">Done</Button>
|
|
<Button x:Name="cocos2d_editbox_cancel" Grid.Column="2" VerticalAlignment="Center">Cancel</Button>
|
|
</Grid>
|
|
</Flyout>
|
|
</Button.Flyout>
|
|
</Button>
|
|
</SwapChainPanel>
|
|
</Page>
|