Files
OpenPackager/OpenPackager/Dialogs/SevenZipWarning.xaml

45 lines
2.6 KiB
XML

<Window x:Class="OpenPackager.SevenZipWarning"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="7-Zip Not Detected" Height="300" Width="600" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Closing="Window_Closing">
<Grid>
<RichTextBox x:Name="textDescription" Margin="0,26,28,0" IsReadOnly="True" FontSize="14" BorderThickness="0" Height="201" VerticalAlignment="Top" HorizontalAlignment="Right" Width="397">
<FlowDocument>
<Paragraph>
<Run Text="7-Zip "/>
<Run Text="is not installed"/>
<Run Text=" on this system,"/>
<Run Text=" but is required "/>
<Run Text="in order for Open Packager to function. It is a great open"/>
<Run Text="-source "/>
<Run Text="archiv"/>
<Run Text="ing"/>
<Run Text=" format which achieves extremely high levels of file compression compared to"/>
<Run Text=" the more popular"/>
<Run Text=" ZIP "/>
<Run Text="and"/>
<Run Text=" RAR. It's efficiency"/>
<Run Text=" and speed"/>
<Run Text=" on modern systems "/>
<Run Text="remains"/>
<Run Text=" unmatched"/>
<Run Text=","/>
<Run Text=" best of all it's completely free"/>
<Run Text="!"/>
</Paragraph>
<Paragraph>
<Run/>
</Paragraph>
<Paragraph>
<Run Text="Open Packager + 7-Zip make a great team :)"/>
</Paragraph>
</FlowDocument>
</RichTextBox>
<Button x:Name="btnOpenSevenZipLink" Content="Get 7-Zip" Margin="245,0,252,19" Click="btnOpenSevenZipLink_Click" Height="20" VerticalAlignment="Bottom" ToolTip="http://www.7-zip.org/"/>
<Image x:Name="imgSevenZipLogo" Margin="44,0,465,19" Stretch="UniformToFill" Height="70" VerticalAlignment="Bottom" Source="/Open Packager;component/Resources/7z_Logo.png"/>
<Image x:Name="imgLogo" Margin="10,0,430,107" Source="/Open Packager;component/Resources/LogoV2.png" Height="154" VerticalAlignment="Bottom"/>
<Label x:Name="labelPlusSymbol" Content="+" Margin="65,0,485,64" FontSize="48" FontWeight="Bold" HorizontalAlignment="Center" Width="44" Height="74" VerticalAlignment="Bottom"/>
</Grid>
</Window>