windows setup: add fourth tutorial slide

This commit is contained in:
Hylke Bons 2012-03-06 20:26:05 +00:00
parent abe8df00a5
commit f1abda5f05
3 changed files with 15 additions and 3 deletions

View file

@ -757,6 +757,7 @@ namespace SparkleShare {
Image = SlideImage,
Frame = new RectangleF (215, Frame.Height - 215, 350, 64)
};
ContentView.AddSubview (SlideImageView);
ContentView.AddSubview (StartupCheckButton);

View file

@ -527,7 +527,14 @@ namespace SparkleShare {
Button finish_button = new Button () {
Content = "Finish"
};
};
WPF.Image slide_image = new WPF.Image () {
Width = 350,
Height = 64
};
slide_image.Source = SparkleUIHelpers.GetBitmap ("tutorial-slide-4");
CheckBox check_box = new CheckBox () {
Content = "Add SparkleShare to startup items",
@ -535,6 +542,10 @@ namespace SparkleShare {
};
ContentCanvas.Children.Add (slide_image);
Canvas.SetLeft (slide_image, 215);
Canvas.SetTop (slide_image, 130);
ContentCanvas.Children.Add (check_box);
Canvas.SetLeft (check_box, 185);
Canvas.SetBottom (check_box, 12);

View file

@ -223,8 +223,8 @@
<Link>plugins\bitbucket.png</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="..\..\data\icons\process-syncing-sparkleshare-mac-i.png">
<Link>Pixmaps\process-syncing-sparkleshare-mac-i.png</Link>
<EmbeddedResource Include="..\..\data\tutorial-slide-4.png">
<Link>Pixmaps\tutorial-slide-4.png</Link>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>