+ Installation completed succesfully
+
diff --git a/umbraco/presentation/umbraco/developer/Packages/StarterKits.aspx.cs b/umbraco/presentation/umbraco/developer/Packages/StarterKits.aspx.cs
index 3dc8b6d798..b9509b4d29 100644
--- a/umbraco/presentation/umbraco/developer/Packages/StarterKits.aspx.cs
+++ b/umbraco/presentation/umbraco/developer/Packages/StarterKits.aspx.cs
@@ -20,25 +20,51 @@ namespace umbraco.presentation.umbraco.developer.Packages
private void showStarterKits()
{
- ph_starterkits.Controls.Add(new UserControl().LoadControl(SystemDirectories.Install + "/steps/Skinning/loadStarterKits.ascx"));
+ install.steps.Skinning.loadStarterKits starterkitsctrl =
+ (install.steps.Skinning.loadStarterKits)new UserControl().LoadControl(SystemDirectories.Install + "/steps/Skinning/loadStarterKits.ascx");
+ starterkitsctrl.StarterKitInstalled+=new install.steps.Skinning.StarterKitInstalledEventHandler(starterkitsctrl_StarterKitInstalled);
+
+ ph_starterkits.Controls.Add(starterkitsctrl);
+
+
StarterKitNotInstalled.Visible = true;
StarterKitInstalled.Visible = false;
}
+
+
public void showSkins(Guid starterKitGuid)
{
+
install.steps.Skinning.loadStarterKitDesigns ctrl = (install.steps.Skinning.loadStarterKitDesigns)new UserControl().LoadControl(SystemDirectories.Install + "/steps/Skinning/loadStarterKitDesigns.ascx");
ctrl.ID = "StarterKitDesigns";
ctrl.StarterKitGuid = starterKitGuid;
-
+ ctrl.StarterKitDesignInstalled += new install.steps.Skinning.StarterKitDesignInstalledEventHandler(ctrl_StarterKitDesignInstalled);
ph_skins.Controls.Add(ctrl);
StarterKitNotInstalled.Visible = false;
StarterKitInstalled.Visible = true;
}
+
+ void starterkitsctrl_StarterKitInstalled()
+ {
+ StarterKitNotInstalled.Visible = false;
+ StarterKitInstalled.Visible = false;
+
+ installationCompleted.Visible = true;
+
+ }
+
+ void ctrl_StarterKitDesignInstalled()
+ {
+ StarterKitNotInstalled.Visible = false;
+ StarterKitInstalled.Visible = false;
+
+ installationCompleted.Visible = true;
+ }
}
}
\ No newline at end of file
diff --git a/umbraco/presentation/umbraco/developer/Packages/StarterKits.aspx.designer.cs b/umbraco/presentation/umbraco/developer/Packages/StarterKits.aspx.designer.cs
index 9d6fd33140..2b5787e1d5 100644
--- a/umbraco/presentation/umbraco/developer/Packages/StarterKits.aspx.designer.cs
+++ b/umbraco/presentation/umbraco/developer/Packages/StarterKits.aspx.designer.cs
@@ -74,5 +74,14 @@ namespace umbraco.presentation.umbraco.developer.Packages {
/// To modify move field declaration from designer file to code-behind file.
///
protected global::System.Web.UI.WebControls.PlaceHolder ph_starterkits;
+
+ ///