0efe5cff09
- Primo rilascio.
37 lines
1.6 KiB
XML
37 lines
1.6 KiB
XML
<Window x:Class="MissingKeyWD"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="MissingKeyWD" Height="300" Width="450" Initialized="MissingKeyWD_Initialized" WindowStyle="None" ShowInTaskbar="False" ResizeMode="NoResize">
|
|
|
|
<Border BorderBrush="Black" BorderThickness="1">
|
|
|
|
<!-- ** Definizione della Grid della MissingKeyWindow ** -->
|
|
<Grid Name="MissingKeyGrid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="8*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Name="ErrorLbl" Grid.Column="1" Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
Foreground="Red" FontSize="25" />
|
|
<Label Name="MissingKeyLbl" Grid.Column="1" Grid.Row="2" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontSize="18"/>
|
|
<Label Name="InsertKeyLbl" Grid.Column="1" Grid.Row="3" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontSize="18" />
|
|
<Button Name="ExitBtn" Grid.Column="1" Grid.Row="5" FontSize="18"/>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
</Window>
|