[NUI] Fix NUITizenGallery to run on Ubuntu VS-Code debugging
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / RecalculateTest / RecalculateTest1Page.xaml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ContentPage x:Class="NUITizenGallery.RecalculateTest1Page"
3   xmlns="http://tizen.org/Tizen.NUI/2018/XAML"
4   xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
5   WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
6   HeightSpecification="{Static LayoutParamPolicies.MatchParent}">
7
8     <!-- AppBar is top-side bar with navigation content, title, and action. If you not set any contents, back button is automatically added. -->
9     <ContentPage.AppBar>
10         <AppBar x:Name="appBar" Title="RecalculateTest1Page"/>
11     </ContentPage.AppBar>
12
13     <!-- Content is main placeholder of ContentPage. Add your content into this view. -->
14     <ContentPage.Content>
15         <View x:Name="ContentView"
16           WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
17           HeightSpecification="{Static LayoutParamPolicies.MatchParent}">
18
19             <View.Layout>
20                 <LinearLayout LinearOrientation="Vertical" LinearAlignment="CenterHorizontal" CellPadding="10, 10"/>
21             </View.Layout>
22
23             <View x:Name="lblView">
24
25                 <View.Layout>
26                     <LinearLayout LinearOrientation="Vertical" LinearAlignment="CenterHorizontal" CellPadding="10, 10"/>
27                 </View.Layout>
28
29                 <TextLabel Text="abc1" CellHorizontalAlignment="Center"/>
30                 <TextLabel Text="abc2" CellHorizontalAlignment="Center"/>
31                 <TextLabel Text="abc3" CellHorizontalAlignment="Center"/>
32                 <TextLabel Text="abc4" CellHorizontalAlignment="Center"/>
33                 <TextLabel Text="abc5" CellHorizontalAlignment="Center"/>
34                 <TextLabel Text="abc6" CellHorizontalAlignment="Center"/>
35                 <TextLabel Text="abc7" CellHorizontalAlignment="Center"/>
36                 <TextLabel Text="abc8" CellHorizontalAlignment="Center"/>
37                 <TextLabel Text="abc9" CellHorizontalAlignment="Center"/>
38                 <TextLabel Text="abc0" CellHorizontalAlignment="Center"/>
39             </View>
40             <Button x:Name="btn1"
41                       Text="clear"
42                       WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
43                       CellHorizontalAlignment="Center"/>
44         </View>
45     </ContentPage.Content>
46 </ContentPage>
47