Files
OmagCUT/AboutBoxWD.xaml
T
Emmanuele Sassi ec6b237c59 OmagCUT :
- Aggiunto AboutBox.
- Aggiunti bottoni tastatura disco e grezzo.
2016-02-11 14:01:24 +00:00

43 lines
1.9 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="383.8" Width="511.8" WindowStyle="None" ResizeMode="NoResize"
AllowsTransparency="True" Background="Transparent">
<!-- Definizione dell'AboutBox -->
<Border Style="{StaticResource OmagCut_WindowBorder}">
<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" Width="300"
Height="100" VerticalAlignment="Bottom"/>
<TextBlock Name="DescriptionLbl" Grid.Column="1" Grid.Row="3" HorizontalAlignment="Center"
VerticalAlignment="Center" FontSize="18" />
<TextBlock Name="VersionLbl" Grid.Column="1" Grid.Row="4" HorizontalAlignment="Center"
VerticalAlignment="Center" FontSize="18"/>
<TextBlock Name="CopirightLbl" Grid.Column="1" Grid.Row="5" HorizontalAlignment="Center"
VerticalAlignment="Center" FontSize="15" />
<Button Name="ExitBtn" Grid.Column="1" Grid.Row="7" IsCancel="True"
Style="{StaticResource OmagCut_WindowGrayTextButton}"/>
</Grid>
</Border>
</Window>