diff --git a/BackupEssentials/BackupEssentials.csproj b/BackupEssentials/BackupEssentials.csproj index 3c27936..cf65fe2 100644 --- a/BackupEssentials/BackupEssentials.csproj +++ b/BackupEssentials/BackupEssentials.csproj @@ -217,6 +217,9 @@ <Content Include="Resources\Guide1.png"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> + <Content Include="Resources\Guide2.png"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </Content> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildExtensionsPath)\Microsoft\Expression\Blend\.NETFramework\v4.5\Microsoft.Expression.Blend.WPF.targets" /> diff --git a/BackupEssentials/Pages/Home.xaml b/BackupEssentials/Pages/Home.xaml index e86988e..815a0ce 100644 --- a/BackupEssentials/Pages/Home.xaml +++ b/BackupEssentials/Pages/Home.xaml @@ -62,9 +62,12 @@ <TextBlock Style="{StaticResource TextBlockSubTitle}"> 2. Drag and Drop </TextBlock> - <TextBlock Margin="6,0"> + <TextBlock Margin="6,2"> Select one or more files or folders, and drag them into this window. This requires the program to be running. </TextBlock> + <Border Width="358" Height="252" Margin="6,4" BorderBrush="#FFACACAC" BorderThickness="1" HorizontalAlignment="Center" VerticalAlignment="Center"> + <Image Source="/BackupEssentials;component/Resources/Guide2.png" RenderOptions.BitmapScalingMode="NearestNeighbor" Width="356" Height="250" HorizontalAlignment="Center" VerticalAlignment="Center"/> + </Border> </WrapPanel> </Grid> </WrapPanel> diff --git a/BackupEssentials/Resources/Guide2.png b/BackupEssentials/Resources/Guide2.png new file mode 100644 index 0000000..881f20a Binary files /dev/null and b/BackupEssentials/Resources/Guide2.png differ