19 lines
1.0 KiB
XML
19 lines
1.0 KiB
XML
<Window x:Class="ENI2.SplashScreenWindow"
|
|
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:ENI2"
|
|
mc:Ignorable="d"
|
|
Title="SplashScreenWindow" Height="300" Width="300" WindowStyle="None" WindowStartupLocation="CenterScreen"
|
|
Background="White" AllowsTransparency="True" ResizeMode="NoResize">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="22" />
|
|
</Grid.RowDefinitions>
|
|
<Image Source="Resources/logo_transparent_babyblau.png"/>
|
|
<Label Name="labelStartupInfo" Grid.Row="1" Content="ENI-2" HorizontalContentAlignment="Center" Background="White" FontSize="11" VerticalContentAlignment="Center" />
|
|
</Grid>
|
|
</Window>
|