30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<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> |