-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.xaml
17 lines (16 loc) · 1.19 KB
/
about.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window x:Class="LAVtechQuickRecover.about"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:LAVtechQuickRecover"
mc:Ignorable="d"
Title="about" Height="350" Width="390" WindowStyle="ToolWindow" ResizeMode="NoResize" WindowStartupLocation="CenterOwner">
<Grid>
<Label Content="LAVTech QuickPick" Margin="91,24,0,0" VerticalAlignment="Top" Opacity="0.995" FontSize="24"/>
<Image HorizontalAlignment="Left" Height="59" Margin="32,15,0,0" VerticalAlignment="Top" Width="59" Source="/logo.png"/>
<TextBlock x:Name="AboutTextBlock" HorizontalAlignment="Center" Margin="0,79,0,0" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Top" Height="88" Width="286"/>
<StackPanel x:Name="SP"/>
<TextBlock x:Name="LogoAuthorTextBlock" HorizontalAlignment="Center" Margin="0,172,0,0" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Top" Height="122" Width="286"/>
</Grid>
</Window>