-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainPage.xaml
More file actions
84 lines (76 loc) · 3.36 KB
/
MainPage.xaml
File metadata and controls
84 lines (76 loc) · 3.36 KB
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
<Page
x:Class="Project_Itachi.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Project_Itachi"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" >
<Page.Resources>
<SolidColorBrush x:Key="NeoBackground" Color="Lime"/>
<SolidColorBrush x:Key="NeoForeground" Color="Black"/>
<SolidColorBrush x:Key="NeoText" Color="Lime"/>
</Page.Resources>
<Grid>
<MediaElement
Source="ms-appx:///Assets/spacebbg.mp4"
AreTransportControlsEnabled="False"
IsLooping="True"
AutoPlay="True"
Volume="0"
Stretch="UniformToFill"/>
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
<TextBlock x:Name="WelcomeNeoText"
Foreground="Lime"
FontFamily="Consolas"
FontSize="20"/>
<TextBlock Text="C:\Users\Login"
Foreground="Lime"
FontFamily="Consolas"
FontSize="20"
Padding="0,20,20,20"/>
<StackPanel Orientation="Horizontal">
<TextBlock Text="<CΩD€-NAME:>"
Foreground="Lime"
FontFamily="Consolas"
FontSize="20"/>
<TextBox x:Name="UsernameBox"
Foreground="{StaticResource NeoText}"
FontFamily="Consolas"
FontSize="20"
Width="100"
CornerRadius="8"
Padding="4"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
<TextBlock Text="<PA§§-CΩD€:>"
Foreground="Lime"
FontFamily="Consolas"
FontSize="20"/>
<PasswordBox x:Name="PasswordBox"
Foreground="{StaticResource NeoText}"
Width="100"
CornerRadius="8"
Padding="4"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="10,40,10,10" HorizontalAlignment="Center">
<Border CornerRadius="8" Padding="4" Background="{ThemeResource NeoBackground}">
<Button x:Name="LoginButton"
Content="▲-initialize"
Padding="8,4"
FontFamily="Consolas"
Foreground="{ThemeResource NeoForeground}"
Background="{ThemeResource NeoBackground}"
Width="150"
CornerRadius="8"
Click="LoginButton_Click" />
</Border>
</StackPanel>
<TextBlock x:Name="OutputText"
Foreground="Lime"
FontFamily="Consolas"
FontSize="20"
Margin="0,20,0,0"/>
</StackPanel>
</Grid>
</Page>