[NUI] Fix NUITizenGallery to run on Ubuntu VS-Code debugging
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / TimePickerTest / TimePickerTestPage.xaml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ContentPage x:Class="NUITizenGallery.TimePickerTestPage"
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="TimePickerTestPage"/>
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="30,30"/>
21             </View.Layout>
22
23               <TextLabel x:Name="text1"
24                               WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
25                               HeightSpecification="100"
26                               HorizontalAlignment="Center"
27                               VerticalAlignment="Center"
28                               PointSize="20"/>
29               <Button x:Name="timeButton"
30                               WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
31                               HeightSpecification="80"
32                               Text="Time Picker"
33                               PointSize="20"/>
34               <Button x:Name="setNowButton"
35                               WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
36                               HeightSpecification="80"
37                               Text="Set Now Time"
38                               PointSize="20"/>
39               <Button x:Name="changePickerStyleButton"
40                               WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
41                               HeightSpecification="80"
42                               Text="Change TimePicker Style"
43                               PointSize="20"/>
44         </View>
45     </ContentPage.Content>
46 </ContentPage>