[NUI] Change for Size2D property to own internalSize2D which is cashed to prevent...
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / res / layout / LayoutAddRemoveTest2Page.xaml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ContentPage x:Class="NUITizenGallery.LayoutAddRemoveTest2Page"
3   xmlns="http://tizen.org/Tizen.NUI/2018/XAML"
4   xmlns:base="clr-namespace:Tizen.NUI.BaseComponents;assembly=Tizen.NUI"
5   xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
6   BackgroundColor="White"
7   WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
8   HeightSpecification="{Static LayoutParamPolicies.MatchParent}">
9
10     <ContentPage.AppBar>
11         <AppBar Title="LayoutAddRemoveTest2"/>
12     </ContentPage.AppBar>
13
14     <ContentPage.Content>
15         
16         <View WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
17             HeightSpecification="{Static LayoutParamPolicies.MatchParent}">
18
19             <View.Layout>
20                 <LinearLayout LinearOrientation="Vertical" CellPadding="10,10"/>
21             </View.Layout>
22             
23             <View x:Name="linear"
24                 WidthSpecification="{Static LayoutParamPolicies.MatchParent}">
25
26                 <View.Layout>
27                     <LinearLayout LinearOrientation="Horizontal" CellPadding="10,10" LinearAlignment="Begin"/>
28                 </View.Layout>
29
30             </View>
31
32             <Button x:Name="addButton"
33                 WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
34                 Text="Add"/>
35
36             <Button x:Name="addTaskButton"
37                 WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
38                 Text="Add with task"/>
39
40             <Button x:Name="removeButton"
41                 WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
42                 Text="Remove"/>
43
44         </View>
45         
46     </ContentPage.Content>
47
48 </ContentPage>