-
Notifications
You must be signed in to change notification settings - Fork 11
/
SplashScreenStartUp.xaml
25 lines (23 loc) · 1.13 KB
/
SplashScreenStartUp.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
<Window x:Class="Handheld_Control_Panel.SplashScreenStartUp"
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:Handheld_Control_Panel" xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
Title="SplashScreenStartUp"
Topmost="True"
WindowStartupLocation="CenterScreen"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
Height="169"
Width="300" BorderBrush="Transparent">
<Border CornerRadius="13" >
<Border.Background>
<ImageBrush Stretch="Fill" ImageSource="/ProjectSBC.png"/>
</Border.Background>
<Grid>
<iconPacks:PackIconFontAwesome Foreground="White" Kind="SpinnerSolid" Height="30" Width="30" Spin="True" Panel.ZIndex="3" Name="fontAwesomeIcon" HorizontalAlignment="Center" Margin="0,125,0,0" />
</Grid>
</Border>
</Window>