23 lines
1.1 KiB
XML
23 lines
1.1 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>
|
|
<Image.Source>
|
|
<BitmapImage UriSource="Resources/logo_eni.png" CreateOptions="IgnoreColorProfile" />
|
|
</Image.Source>
|
|
</Image>
|
|
<Label Name="labelStartupInfo" Grid.Row="1" Content="ENI-2" HorizontalContentAlignment="Center" Background="White" FontSize="11" VerticalContentAlignment="Center" />
|
|
</Grid>
|
|
</Window>
|