-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSplashScreenStartUp.xaml
31 lines (29 loc) · 1.3 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
26
27
28
29
30
31
<Window x:Class="Handheld_Hardware_Tools.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_Hardware_Tools"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
ResizeMode="NoResize"
xmlns:fa="http://schemas.fontawesome.io/icons/"
Title="SplashScreenStartUp" Height="250" Width="400">
<Border CornerRadius="20" >
<Border.Background>
<ImageBrush x:Name="image" Stretch="Fill"/>
</Border.Background>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="4*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Border Grid.Row="1" Background="#FF121212" Width="50" CornerRadius="16" >
<fa:ImageAwesome Icon="Spinner" Spin="True" Height="38" Width="48" Foreground="White" VerticalAlignment="Center" />
</Border>
</Grid>
</Border>
</Window>