e3e11fd598e290dd8d4b18caa91306b310e1d170
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / BackgroundColorTest / BackgroundColorTest3Page.xaml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ContentPage x:Class="NUITizenGallery.BackgroundColorTest3Page"
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="BackgroundColorTest3Page"/>
11     </ContentPage.AppBar>
12
13     <!-- Content is main placdeholder 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           ParentOrigin="Center"
19           PivotPoint="Center"
20           PositionUsesPivotPoint="true">
21
22             <Button x:Name="button1"
23                     BackgroundColor="Black"
24                     WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
25                     PointSize="6"
26                     Text="Change Page Background Color"
27                     TextColor="White"/>
28
29         </View>
30     </ContentPage.Content>
31
32 </ContentPage>