Files
egtstone3d/SplashScreen/SplashScreenV.xaml
2025-01-16 15:24:29 +01:00

20 lines
670 B
XML

<Window x:Class="SplashScreenV"
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="Transparent"
Topmost="True"
ShowInTaskbar="False"
Height="600"
Width="1000">
<Grid>
<Image Source="/Resources/SplashScreen/PictureCicken.jpg"
Style="{StaticResource SplashScreenV_Image}"/>
<TextBlock x:Name="VersionTxBl"
Style="{StaticResource SplashScreenV_TxBl}"/>
</Grid>
</Window>