ecb6d7cb18
- Aggiornate immagini AboutBox. - Aggiornata immagine Delete in NumericKeyboard. - Modificata NumericKeyboard affinchè la window sia grande quanto necessario e non quanto la MainWindow. - Modificate chiamate alla NumericKeybord in conseguenza delle modifiche ad essa apportate.
45 lines
2.0 KiB
XML
45 lines
2.0 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="256" Width="409.2" Initialized="MissingKeyWD_Initialized" WindowStyle="None" ShowInTaskbar="False" ResizeMode="NoResize">
|
|
|
|
<!-- Chiamata al Dictionary -->
|
|
<Window.Resources>
|
|
<ResourceDictionary Source="SarmaxWallDictionary.xaml"/>
|
|
</Window.Resources>
|
|
|
|
<!-- Definizione della MissingKeyWindow -->
|
|
<Border BorderBrush="Black" BorderThickness="1">
|
|
|
|
<!-- ** Definizione della Grid della MissingKeyWindow ** -->
|
|
<Grid Name="MissingKeyGrid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="0.5*"/>
|
|
<ColumnDefinition Width="5*"/>
|
|
<ColumnDefinition Width="0.5*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="0.25*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.25*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
</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="3" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontSize="15"/>
|
|
<Label Name="InsertKeyLbl" Grid.Column="1" Grid.Row="4" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontSize="15" />
|
|
<Button Name="ExitBtn" Grid.Column="1" Grid.Row="6" FontSize="18"/>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</Window>
|