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.
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<Window x:Class="AboutBoxWD"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="AboutBoxWD" Height="288" Width="409.2" Initialized="AboutBoxWD_Initialized" WindowStyle="None" ResizeMode="NoResize" AllowsTransparency="True">
|
|
|
|
<!-- Chiamata al Dictionary -->
|
|
<Window.Resources>
|
|
<ResourceDictionary Source="SarmaxWallDictionary.xaml"/>
|
|
</Window.Resources>
|
|
|
|
|
|
|
|
<!-- Definizione dell'AboutBox -->
|
|
<Border Grid.Column="1" Grid.Row="1" BorderBrush="Black" BorderThickness="1">
|
|
<Grid >
|
|
<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.5*"/>
|
|
<RowDefinition Height="0.25*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
<RowDefinition Height="0.5*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Image Grid.Column="1" Grid.Row="0" Grid.RowSpan="3" Source="Resources/AboutBoxImage.png" Width="300"
|
|
Height="100" VerticalAlignment="Bottom"/>
|
|
<Label Name="DescriptionLbl" Grid.Column="1" Grid.Row="3" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontSize="18" />
|
|
<Label Name="VersionLbl" Grid.Column="1" Grid.Row="4" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontSize="18"/>
|
|
<Label Name="CopirightLbl" Grid.Column="1" Grid.Row="5" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontSize="15" />
|
|
<Button Name="ExitBtn" Grid.Column="1" Grid.Row="7" FontSize="18"/>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</Window>
|