20 lines
1007 B
XML
20 lines
1007 B
XML
<Window x:Class="Intromat.Views.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"
|
|
WindowStyle="None"
|
|
WindowStartupLocation="CenterScreen"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
mc:Ignorable="d"
|
|
SizeToContent="WidthAndHeight"
|
|
Title="SplashScreenWindow">
|
|
<Border Background="#C0242424" CornerRadius="5" BorderBrush="#a0a0a0" BorderThickness="1" Padding="10">
|
|
<StackPanel Orientation="Vertical">
|
|
<Image Source="{StaticResource LogoImageSource}" Width="400" Height="400" />
|
|
<TextBlock Text="Intromat" VerticalAlignment="Bottom" HorizontalAlignment="Center" FontSize="96" Margin="0,-30,0,0"></TextBlock>
|
|
</StackPanel>
|
|
</Border>
|
|
</Window>
|