-
Notifications
You must be signed in to change notification settings - Fork 38
/
SplashScreen.xaml
32 lines (32 loc) · 1.01 KB
/
SplashScreen.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
<Window x:Class="CanaryLauncherUpdate.SplashScreen"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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:local="clr-namespace:CanaryLauncherUpdate"
Icon="Assets/launcher_ico.ico"
mc:Ignorable="d"
Background="Transparent"
AllowsTransparency="True"
ResizeMode="NoResize"
WindowStyle="None"
WindowStartupLocation="CenterScreen"
Title="Loading Launcher" Height="400" Width="800">
<Grid>
<Image
Height="150"
Source="Assets/logo.png"
Stretch="Uniform"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Visibility="Visible"></Image>
<TextBlock
HorizontalAlignment="Center"
VerticalAlignment="Center"
Margin="0, 180, 0, 0"
Foreground="White"
FontSize="16"
Text="Loading"
Visibility="Collapsed"/>
</Grid>
</Window>