-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoader.axaml
107 lines (106 loc) · 4.77 KB
/
Loader.axaml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:controls="clr-namespace:zstio_tv.UI.Controls"
mc:Ignorable="d"
d:DesignWidth="800" d:DesignHeight="450"
Width="800" Height="450"
x:Class="zstio_tv.Loader"
Title="zstio_tv"
ExtendClientAreaChromeHints="NoChrome"
TransparencyLevelHint="Transparent"
Background="Transparent"
ExtendClientAreaToDecorationsHint="True"
CanResize="False"
Loaded="OnLoaded"
>
<Border
CornerRadius="20" Background="#1C1C1C"
PointerPressed="WindowMove_Pressed">
<Grid x:Name="Handler">
<Grid x:Name="HandlerBackground">
<TextBlock
x:Name="HandlerBackgroundStyling"
Text="表"
FontFamily="{StaticResource SemiBold-NotoSansJP}"
FontSize="1400"
Foreground="#121212"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Padding="-275,-250,0,0"
PointerPressed="WindowMove_Pressed"
/>
<Rectangle>
<Rectangle.Fill>
<LinearGradientBrush StartPoint="0%,0%" EndPoint="0%,100%">
<GradientStop Color="#00262626" Offset="0"/>
<GradientStop Color="#FF262626" Offset="1"/>
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
</Grid>
<Grid x:Name="HandlerUI">
<StackPanel Orientation="Vertical" Margin="15">
<Grid Margin="0,25,0,0">
<controls:RadialGradientTextControl
Text="セットアップ表示"
FontSize="48"
FontFamily="{StaticResource SemiBold-NotoSansJP}"
CenterColor="#00FFFFFF"
EdgeColor="#00FFFFFF"
BorderColor="#40FFFFFF"
BorderThickness="1"
HorizontalAlignment="Center"
VerticalAlignment="Center"
BorderAlignment="Inside"
Margin="0,-20,0,0"
/>
<TextBlock
Text="Setup Displays"
FontSize="32"
FontFamily="{StaticResource SemiBold-Syne}"
Foreground="#FFC1C1C1"
HorizontalAlignment="Center"
/>
</Grid>
<Grid Height="310">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" x:Name="HandlerUIDisplays">
<!--
...
-->
</StackPanel>
</Grid>
</StackPanel>
<Grid VerticalAlignment="Bottom" Margin="15">
<Label
Content="*Select the screen on which zstio-tv will be displayed"
FontFamily="{StaticResource SemiBold-Inter}"
Foreground="#6E6E6E"
VerticalAlignment="Center"
/>
<Button
x:Name="ContinueButton"
Width="100"
Height="32"
FontFamily="{StaticResource SemiBold-Inter}"
Background="#E3E3E3"
Foreground="#282828"
HorizontalAlignment="Right"
CornerRadius="10"
Cursor="Hand"
Click="ContinueButton_Clicked"
PointerEntered="ContinueButton_OnPointerEntered"
PointerExited="ContinueButton_OnPointerExited">
<TextBlock
x:Name="ContinueButtonTextBlock"
Text="Continue"
Foreground="#282828"
TextAlignment="Center"
/>
</Button>
</Grid>
</Grid>
</Grid>
</Border>
</Window>