82bc1f4ff2
- ricompilazione con cambio versione.
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<Window x:Class="SplashScreen"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
Topmost="True"
|
|
ShowInTaskbar="False"
|
|
Height="600"
|
|
Width="1000">
|
|
<Grid>
|
|
<Image Source="/Resources/SplashScreen/GoldSplashscreen.png"
|
|
Stretch="UniformToFill"/>
|
|
<TextBlock Text="ICARUS"
|
|
Foreground="#b9984c"
|
|
FontSize="47"
|
|
FontFamily="/Resources/Fonts/#Roboto"
|
|
FontWeight="Light"
|
|
Margin="463,125,0,0"/>
|
|
<TextBlock x:Name="VersionTxBl"
|
|
FontSize="14"
|
|
FontFamily="/Resources/Fonts/#Roboto"
|
|
Margin="500,175,0,0"/>
|
|
<Grid Height="180"
|
|
Width="92"
|
|
VerticalAlignment="Bottom"
|
|
Margin="620,0,0,0">
|
|
<Image Source="/Resources/SplashScreen/LogoEgalware.png"
|
|
Height="180"
|
|
Width="92"
|
|
Stretch="UniformToFill"/>
|
|
<TextBlock Text="2022-2023"
|
|
FontSize="12"
|
|
FontFamily="/Resources/Fonts/#Roboto"
|
|
HorizontalAlignment="Center"
|
|
Margin="0,140,0,0"/>
|
|
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|