-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathKioskPage1.xaml
48 lines (46 loc) · 1.84 KB
/
KioskPage1.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8" ?>
<View x:Class="jjangchin_kiosk.KioskPage1"
xmlns="http://tizen.org/Tizen.NUI/2018/XAML"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
WidthSpecification="{Static LayoutParamPolicies.MatchParent}"
HeightSpecification="{Static LayoutParamPolicies.MatchParent}"
BackgroundColor="White"
xmlns:local="clr-namespace:jjangchin_kiosk" >
<View.Layout>
<LinearLayout LinearOrientation="Vertical" LinearAlignment="CenterHorizontal"/>
</View.Layout>
<View HeightSpecification="40" />
<FlexContainer
FlexDirection="Row"
AlignContent="AlignFlexStart"
AlignItems="AlignFlexStart"
JustifyContent="JustifyFlexStart">
<Button x:Name="coffeeBtn"
Text="음료"
FontFamily="배달의민족주아"
TextColor="Black"
ClickEvent="Coffee_Button_ClickEvent"
BackgroundImage="*Resource*/images/Selectpage.png"
WidthSpecification="300" HeightSpecification="100" />
<View WidthSpecification="30" />
<Button x:Name="adeBtn"
Text="디저트"
FontFamily="배달의민족주아"
TextColor="Black"
ClickEvent="Ade_Button_ClickEvent"
BackgroundImage="*Resource*/images/Selectpage2.png"
WidthSpecification="300" HeightSpecification="100"/>
</FlexContainer>
<View HeightSpecification="50" />
<View WidthSpecification="50" />
<View x:Name="btnList" HeightSpecification="{Static LayoutParamPolicies.MatchParent}">
<View.Layout>
<FlexLayout
Direction="Column"
Alignment="FlexStart"
Justification="FlexStart"
WrapType="Wrap"
/>
</View.Layout>
</View>
</View>