Version 3 Beta 1 - Complete re-write

This commit is contained in:
Micke
2021-04-13 17:57:12 +10:00
parent 2dfaf1bfba
commit c7f8cbe760
90 changed files with 28774 additions and 7724 deletions

30
Xaml/SplashScreen.xaml Normal file
View File

@@ -0,0 +1,30 @@
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="SplashScreenView"
Height="150" Width="420"
WindowStartupLocation="CenterScreen" WindowStyle="None"
ShowInTaskbar="False" Topmost="True" AllowsTransparency="True"
ResizeMode="NoResize" Background="#7F000000" Foreground="White">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!--
<Image Grid.Row="0" Width="64" Height="64" Margin="10,0,10,0" ... />
<Grid Grid.Column="1" Margin="0,10,0,0">
-->
<Grid Grid.Column="1" Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBlock Name="txtSplashTitle" Text="" FontSize="18" FontWeight="Bold" VerticalAlignment="Top"/>
<TextBlock Name="txtSplashText" Text="" Grid.Row="1" VerticalAlignment="Center" />
</Grid>
</Grid>
</Window>