52daaf30cc4dffeee92fa08bc0f782da211f6dc0
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / res / layout / ButtonTest5Page.xaml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <b:View x:Class="NUITizenGallery.ButtonTest5Page"
3   xmlns="http://tizen.org/Tizen.NUI/2018/XAML"
4   xmlns:b="clr-namespace:Tizen.NUI.BaseComponents;assembly=Tizen.NUI"
5   xmlns:nui="clr-namespace:Tizen.NUI.Components;assembly=Tizen.NUI.Components"
6   xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
7
8 <b:View x:Name="rootView"
9             HeightResizePolicy="FillToParent"
10             WidthResizePolicy="FillToParent"
11             BackgroundColor="#ffffff">
12         <View.Layout>
13             <LinearLayout LinearOrientation="Vertical" LinearAlignment="Top" CellPadding="30,30"/>
14         </View.Layout>
15
16        
17         <b:TextLabel x:Name="text1"
18                      WidthResizePolicy="FillToParent"
19                      HeightResizePolicy="UseNaturalSize"
20                      PointSize="8"
21                      Text="Button Size: 70"
22                      />
23
24         <nui:Slider x:Name="slider1"
25                     MinValue="0"
26                     MaxValue="200"
27                     CurrentValue="70"
28                     WidthResizePolicy="FillToParent"
29                     TrackThickness="5"
30                     BgTrackColor="#b1b1b1"
31                     SlidedTrackColor="#3db9cc"
32                     />
33
34         <b:TextLabel x:Name="text2"
35                      WidthResizePolicy="FillToParent"
36                      HeightResizePolicy="UseNaturalSize"
37                      PointSize="8"
38                      Text="Button Font Size: 5"
39                      />
40
41         <nui:Slider x:Name="slider2"
42                     MinValue="0"
43                     MaxValue="30"
44                     CurrentValue="5"
45                     WidthResizePolicy="FillToParent"
46                     TrackThickness="5"
47                     BgTrackColor="#b1b1b1"
48                     SlidedTrackColor="#3db9cc"
49                     />
50
51         <b:TextLabel x:Name="text3"
52                      WidthResizePolicy="FillToParent"
53                      HeightResizePolicy="UseNaturalSize"
54                      PointSize="8"
55                      Text="Button Opaticy: 1.0"
56                      />
57
58         <nui:Slider x:Name="slider3"
59                     MinValue="0"
60                     MaxValue="1"
61                     CurrentValue="1"
62                     WidthResizePolicy="FillToParent"
63                     TrackThickness="5"
64                     BgTrackColor="#b1b1b1"
65                     SlidedTrackColor="#3db9cc"
66                     />
67
68         <nui:Button x:Name="button1"
69                     WidthResizePolicy="FillToParent"
70                     SizeHeight="70"
71                     BackgroundColor="#0000ff"
72                     Text="Button1"
73                     PointSize="5"
74                     Opacity="1"/>
75
76         <nui:Button x:Name="button2"
77                     WidthResizePolicy="FillToParent"
78                     SizeHeight="70"
79                     BackgroundColor="#0000ff"
80                     PointSize="5"
81                     Opacity="1"
82                     Text="Button2"/>
83
84     </b:View>
85 </b:View>
86