<Window x:Class="TalgrafNaytto.SplashScreen"
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:materialDesign="https://materialdesignxaml.net/winfx/xaml/themes"
mc:Ignorable="d"
Title="SplashScreen" Height="450" Width="750"
WindowStyle="None"
WindowStartupLocation="CenterScreen"
AllowsTransparency="True"
Background="{x:Null}">
<materialDesign:Card UniformCornerRadius="15" Background="{DynamicResourse MaterialDesignPaper}"
materialDesign:ShadowAssist.ShadowDepth="Depth4" Margin="25">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="350"></ColumnDefinition>
<ColumnDefinition Width="400"></ColumnDefinition>
</Grid.ColumnDefinitions>
<StackPanel Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="50
0 0 0">
<WrapPanel>
<Image Source="Assets/talgraflogo.png" HorizontalAlignment="Left" Height="50"
Width="50"></Image>
<TextBlock Text="Talgraf" FontSize="28" FontWeight="Bold"
HorizontalAlignment="Left" VerticalAlignment="Center" Margin="15 0 0 0"></TextBlock>
</WrapPanel>
</StackPanel>
</Grid>
</materialDesign:Card>
</Window>