e2df14e44d
- migliorato splashscreen - eliminate classi spostate in Lib
41 lines
1.4 KiB
XML
41 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="White"
|
|
Topmost="False"
|
|
ShowInTaskbar="False"
|
|
Height="600"
|
|
Width="1000">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="7.20*"/>
|
|
<ColumnDefinition Width="1.68*"/>
|
|
<ColumnDefinition Width="0.91*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1.4*"/>
|
|
<RowDefinition Height="0.2*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
<Image Grid.ColumnSpan="3"
|
|
Grid.RowSpan="3"
|
|
Source="/Resources/SplashScreen.png"
|
|
Stretch="UniformToFill"/>
|
|
<TextBlock x:Name="VersionTxBl"
|
|
Grid.Column="1"
|
|
Grid.Row="1"
|
|
FontSize="14"
|
|
FontFamily="./Resources/Fonts/#Advent Pro"
|
|
HorizontalAlignment="Center"/>
|
|
<!--<TextBlock Text="2022-2023"
|
|
FontSize="6"
|
|
FontFamily="/Resources/Fonts/#Roboto"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Bottom"
|
|
Margin="0,0,254,60"/>-->
|
|
</Grid>
|
|
</Window>
|