[NUI] Fix NUITizenGallery to run on Ubuntu VS-Code debugging
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / AbsoluteLayoutTest / AbsoluteLayoutTestPage.xaml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ContentPage x:Class="NUITizenGallery.AbsoluteLayoutTestPage"
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="AbsoluteLayoutTestPage"/>
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             <TextLabel Text="Stylish Header" PointSize="12" Position2D="73,130"/>
19             <View BackgroundColor="#FF0000" Position2D="32,108" Size2D="400,5"/>
20             <View BackgroundColor="#00FF00" Position2D="32,120" Size2D="400,5"/>
21             <View BackgroundColor="#0000FF" Position2D="42,100" Size2D="5,100"/>
22             <View BackgroundColor="#FF00FF" Position2D="54,100" Size2D="5,100"/>
23         </View>
24     </ContentPage.Content>
25
26 </ContentPage>