diff --git a/Manager/TestWizard/Backup/App.ico b/Manager/TestWizard/Backup/App.ico deleted file mode 100644 index 3a5525f..0000000 Binary files a/Manager/TestWizard/Backup/App.ico and /dev/null differ diff --git a/Manager/TestWizard/Backup/AssemblyInfo.cs b/Manager/TestWizard/Backup/AssemblyInfo.cs deleted file mode 100644 index 8b578a6..0000000 --- a/Manager/TestWizard/Backup/AssemblyInfo.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -// -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -// -[assembly: AssemblyTitle("")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: - -[assembly: AssemblyVersion("1.0.0.0")] - -// -// In order to sign your assembly you must specify a key to use. Refer to the -// Microsoft .NET Framework documentation for more information on assembly signing. -// -// Use the attributes below to control which key is used for signing. -// -// Notes: -// (*) If no key is specified, the assembly is not signed. -// (*) KeyName refers to a key that has been installed in the Crypto Service -// Provider (CSP) on your machine. KeyFile refers to a file which contains -// a key. -// (*) If the KeyFile and the KeyName values are both specified, the -// following processing occurs: -// (1) If the KeyName can be found in the CSP, that key is used. -// (2) If the KeyName does not exist and the KeyFile does exist, the key -// in the KeyFile is installed into the CSP and used. -// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. -// When specifying the KeyFile, the location of the KeyFile should be -// relative to the project output directory which is -// %Project Directory%\obj\. For example, if your KeyFile is -// located in the project directory, you would specify the AssemblyKeyFile -// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] -// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework -// documentation for more information on this. -// -[assembly: AssemblyDelaySign(false)] -[assembly: AssemblyKeyFile("")] -[assembly: AssemblyKeyName("")] diff --git a/Manager/TestWizard/Backup/Bitmaps/Sidebar.bmp b/Manager/TestWizard/Backup/Bitmaps/Sidebar.bmp deleted file mode 100644 index 99ad3c0..0000000 Binary files a/Manager/TestWizard/Backup/Bitmaps/Sidebar.bmp and /dev/null differ diff --git a/Manager/TestWizard/Backup/CompletePage.cs b/Manager/TestWizard/Backup/CompletePage.cs deleted file mode 100644 index 4417ef2..0000000 --- a/Manager/TestWizard/Backup/CompletePage.cs +++ /dev/null @@ -1,86 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; - -using Wizard.UI; - -namespace TestWizard -{ - public class CompletePage : Wizard.UI.ExternalWizardPage - { - private System.Windows.Forms.Label label1; - private System.ComponentModel.IContainer components = null; - - public CompletePage() - { - // This call is required by the Windows Form Designer. - InitializeComponent(); - - // TODO: Add any initialization after the InitializeComponent call - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if (components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.label1 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // Sidebar - // - this.Sidebar.Name = "Sidebar"; - this.Sidebar.Size = new System.Drawing.Size(165, 320); - // - // label1 - // - this.label1.Location = new System.Drawing.Point(8, 64); - this.label1.Name = "label1"; - this.label1.TabIndex = 0; - this.label1.Text = "CompletePage"; - // - // CompletePage - // - this.Controls.Add(this.label1); - this.Name = "CompletePage"; - this.Size = new System.Drawing.Size(424, 320); - this.Load += new System.EventHandler(this.CompletePage_Load); - this.SetActive += new System.ComponentModel.CancelEventHandler(this.CompletePage_SetActive); - this.Controls.SetChildIndex(this.label1, 0); - this.Controls.SetChildIndex(this.Sidebar, 0); - this.ResumeLayout(false); - - } - #endregion - - private void CompletePage_SetActive(object sender, System.ComponentModel.CancelEventArgs e) - { - SetWizardButtons(WizardButtons.Back | WizardButtons.Finish); - } - - private void CompletePage_Load(object sender, System.EventArgs e) - { - this.Sidebar.BackgroundImage = new Bitmap(this.GetType(), "Bitmaps.Sidebar.bmp"); - } - } -} - diff --git a/Manager/TestWizard/Backup/CompletePage.resx b/Manager/TestWizard/Backup/CompletePage.resx deleted file mode 100644 index eb0ca8a..0000000 --- a/Manager/TestWizard/Backup/CompletePage.resx +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - Private - - - Public - - - False - - - Private - - - Private - - - False - - - False - - - True - - - True - - - 80 - - - (Default) - - - False - - - CompletePage - - - Private - - - 8, 8 - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/MiddlePage.cs b/Manager/TestWizard/Backup/MiddlePage.cs deleted file mode 100644 index 1a80ed6..0000000 --- a/Manager/TestWizard/Backup/MiddlePage.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; - -using Wizard.UI; - -namespace TestWizard -{ - public class MiddlePage : Wizard.UI.InternalWizardPage - { - private System.ComponentModel.IContainer components = null; - - public MiddlePage() - { - // This call is required by the Windows Form Designer. - InitializeComponent(); - - // TODO: Add any initialization after the InitializeComponent call - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if (components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.SuspendLayout(); - // - // Banner - // - this.Banner.Name = "Banner"; - this.Banner.Size = new System.Drawing.Size(336, 64); - this.Banner.Subtitle = "This is the middle page of the wizard."; - this.Banner.Title = "Middle Page"; - // - // MiddlePage - // - this.Name = "MiddlePage"; - this.Size = new System.Drawing.Size(336, 150); - this.SetActive += new System.ComponentModel.CancelEventHandler(this.MiddlePage_SetActive); - this.ResumeLayout(false); - - } - #endregion - - private void MiddlePage_SetActive(object sender, System.ComponentModel.CancelEventArgs e) - { - SetWizardButtons(WizardButtons.Back | WizardButtons.Next); - } - } -} - diff --git a/Manager/TestWizard/Backup/MiddlePage.resx b/Manager/TestWizard/Backup/MiddlePage.resx deleted file mode 100644 index 2644f65..0000000 --- a/Manager/TestWizard/Backup/MiddlePage.resx +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - Private - - - Public - - - False - - - False - - - True - - - True - - - 80 - - - (Default) - - - False - - - Private - - - MiddlePage - - - 8, 8 - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Program.cs b/Manager/TestWizard/Backup/Program.cs deleted file mode 100644 index f2f8c77..0000000 --- a/Manager/TestWizard/Backup/Program.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Windows.Forms; - -using Wizard.UI; - -namespace TestWizard -{ - public class Program - { - [STAThread] - static void Main() - { - TestWizardSheet wizard = new TestWizardSheet(); - - Application.EnableVisualStyles(); - Application.DoEvents(); - Application.Run(wizard); - } - } -} diff --git a/Manager/TestWizard/Backup/TestWizard.csproj b/Manager/TestWizard/Backup/TestWizard.csproj deleted file mode 100644 index 0f25890..0000000 --- a/Manager/TestWizard/Backup/TestWizard.csproj +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Manager/TestWizard/Backup/TestWizard.sln b/Manager/TestWizard/Backup/TestWizard.sln deleted file mode 100644 index a48e2a6..0000000 --- a/Manager/TestWizard/Backup/TestWizard.sln +++ /dev/null @@ -1,37 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestWizard", "TestWizard.csproj", "{C4C2A78E-01F3-4D2C-A3FB-1C90D8F58033}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wizard.UI", "..\Wizard.UI\Wizard.UI.csproj", "{80614F74-563D-418E-9BF6-1294F73521C0}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wizard.Controls", "..\Wizard.Controls\Wizard.Controls.csproj", "{23AD43FF-38F2-4FEC-9FAA-D7B2FA54492B}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {C4C2A78E-01F3-4D2C-A3FB-1C90D8F58033}.Debug.ActiveCfg = Debug|.NET - {C4C2A78E-01F3-4D2C-A3FB-1C90D8F58033}.Debug.Build.0 = Debug|.NET - {C4C2A78E-01F3-4D2C-A3FB-1C90D8F58033}.Release.ActiveCfg = Release|.NET - {C4C2A78E-01F3-4D2C-A3FB-1C90D8F58033}.Release.Build.0 = Release|.NET - {80614F74-563D-418E-9BF6-1294F73521C0}.Debug.ActiveCfg = Debug|.NET - {80614F74-563D-418E-9BF6-1294F73521C0}.Debug.Build.0 = Debug|.NET - {80614F74-563D-418E-9BF6-1294F73521C0}.Release.ActiveCfg = Release|.NET - {80614F74-563D-418E-9BF6-1294F73521C0}.Release.Build.0 = Release|.NET - {23AD43FF-38F2-4FEC-9FAA-D7B2FA54492B}.Debug.ActiveCfg = Debug|.NET - {23AD43FF-38F2-4FEC-9FAA-D7B2FA54492B}.Debug.Build.0 = Debug|.NET - {23AD43FF-38F2-4FEC-9FAA-D7B2FA54492B}.Release.ActiveCfg = Release|.NET - {23AD43FF-38F2-4FEC-9FAA-D7B2FA54492B}.Release.Build.0 = Release|.NET - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/Manager/TestWizard/Backup/TestWizardSheet.cs b/Manager/TestWizard/Backup/TestWizardSheet.cs deleted file mode 100644 index b4fc8e1..0000000 --- a/Manager/TestWizard/Backup/TestWizardSheet.cs +++ /dev/null @@ -1,62 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; - -namespace TestWizard -{ - public class TestWizardSheet : Wizard.UI.WizardSheet - { - private System.ComponentModel.IContainer components = null; - - public TestWizardSheet() - { - // This call is required by the Windows Form Designer. - InitializeComponent(); - - this.Pages.Add(new WelcomePage()); - this.Pages.Add(new MiddlePage()); - this.Pages.Add(new CompletePage()); - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if (components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - // - // TestWizardSheet - // - this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); - this.ClientSize = new System.Drawing.Size(384, 141); - this.Name = "TestWizardSheet"; - this.Load += new System.EventHandler(this.TestWizardSheet_Load); - - } - #endregion - - private void TestWizardSheet_Load(object sender, System.EventArgs e) - { - - } - } -} - diff --git a/Manager/TestWizard/Backup/TestWizardSheet.resx b/Manager/TestWizard/Backup/TestWizardSheet.resx deleted file mode 100644 index 311e3c3..0000000 --- a/Manager/TestWizard/Backup/TestWizardSheet.resx +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - (Default) - - - False - - - False - - - 8, 8 - - - TestWizardSheet - - - True - - - 80 - - - True - - - Private - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/WelcomePage.cs b/Manager/TestWizard/Backup/WelcomePage.cs deleted file mode 100644 index 4da613c..0000000 --- a/Manager/TestWizard/Backup/WelcomePage.cs +++ /dev/null @@ -1,116 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; - -using Wizard.UI; - -namespace TestWizard -{ - public class WelcomePage : Wizard.UI.ExternalWizardPage - { - private System.Windows.Forms.Label titleLabel; - private System.Windows.Forms.Label introductionLabel; - private System.Windows.Forms.Label promptLabel; - private System.ComponentModel.IContainer components = null; - - public WelcomePage() - { - // This call is required by the Windows Form Designer. - InitializeComponent(); - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if (components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.titleLabel = new System.Windows.Forms.Label(); - this.introductionLabel = new System.Windows.Forms.Label(); - this.promptLabel = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // Sidebar - // - this.Sidebar.Name = "Sidebar"; - this.Sidebar.Size = new System.Drawing.Size(165, 320); - // - // titleLabel - // - this.titleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.titleLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); - this.titleLabel.Location = new System.Drawing.Point(176, 4); - this.titleLabel.Name = "titleLabel"; - this.titleLabel.Size = new System.Drawing.Size(288, 28); - this.titleLabel.TabIndex = 1; - this.titleLabel.Text = "Welcome"; - // - // introductionLabel - // - this.introductionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.introductionLabel.Location = new System.Drawing.Point(176, 40); - this.introductionLabel.Name = "introductionLabel"; - this.introductionLabel.Size = new System.Drawing.Size(288, 44); - this.introductionLabel.TabIndex = 2; - this.introductionLabel.Text = "Some introductory text goes here."; - // - // promptLabel - // - this.promptLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.promptLabel.Location = new System.Drawing.Point(176, 296); - this.promptLabel.Name = "promptLabel"; - this.promptLabel.Size = new System.Drawing.Size(288, 16); - this.promptLabel.TabIndex = 3; - this.promptLabel.Text = "Press Next to continue."; - // - // WelcomePage - // - this.Controls.Add(this.promptLabel); - this.Controls.Add(this.introductionLabel); - this.Controls.Add(this.titleLabel); - this.Name = "WelcomePage"; - this.Size = new System.Drawing.Size(465, 320); - this.Load += new System.EventHandler(this.WelcomePage_Load); - this.SetActive += new System.ComponentModel.CancelEventHandler(this.WelcomePage_SetActive); - this.Controls.SetChildIndex(this.titleLabel, 0); - this.Controls.SetChildIndex(this.introductionLabel, 0); - this.Controls.SetChildIndex(this.promptLabel, 0); - this.Controls.SetChildIndex(this.Sidebar, 0); - this.ResumeLayout(false); - - } - #endregion - - private void WelcomePage_SetActive(object sender, System.ComponentModel.CancelEventArgs e) - { - SetWizardButtons(WizardButtons.Next); - } - - private void WelcomePage_Load(object sender, System.EventArgs e) - { - this.Sidebar.BackgroundImage = new Bitmap(this.GetType(), "Bitmaps.Sidebar.bmp"); - } - } -} - diff --git a/Manager/TestWizard/Backup/WelcomePage.resx b/Manager/TestWizard/Backup/WelcomePage.resx deleted file mode 100644 index 3b52196..0000000 --- a/Manager/TestWizard/Backup/WelcomePage.resx +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - Private - - - Public - - - False - - - Private - - - Private - - - False - - - Private - - - Private - - - False - - - Private - - - Private - - - False - - - False - - - True - - - True - - - 80 - - - (Default) - - - False - - - Private - - - WelcomePage - - - 8, 8 - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.Controls/AssemblyInfo.cs b/Manager/TestWizard/Backup/Wizard.Controls/AssemblyInfo.cs deleted file mode 100644 index 8b578a6..0000000 --- a/Manager/TestWizard/Backup/Wizard.Controls/AssemblyInfo.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -// -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -// -[assembly: AssemblyTitle("")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: - -[assembly: AssemblyVersion("1.0.0.0")] - -// -// In order to sign your assembly you must specify a key to use. Refer to the -// Microsoft .NET Framework documentation for more information on assembly signing. -// -// Use the attributes below to control which key is used for signing. -// -// Notes: -// (*) If no key is specified, the assembly is not signed. -// (*) KeyName refers to a key that has been installed in the Crypto Service -// Provider (CSP) on your machine. KeyFile refers to a file which contains -// a key. -// (*) If the KeyFile and the KeyName values are both specified, the -// following processing occurs: -// (1) If the KeyName can be found in the CSP, that key is used. -// (2) If the KeyName does not exist and the KeyFile does exist, the key -// in the KeyFile is installed into the CSP and used. -// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. -// When specifying the KeyFile, the location of the KeyFile should be -// relative to the project output directory which is -// %Project Directory%\obj\. For example, if your KeyFile is -// located in the project directory, you would specify the AssemblyKeyFile -// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] -// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework -// documentation for more information on this. -// -[assembly: AssemblyDelaySign(false)] -[assembly: AssemblyKeyFile("")] -[assembly: AssemblyKeyName("")] diff --git a/Manager/TestWizard/Backup/Wizard.Controls/EtchedLine.cs b/Manager/TestWizard/Backup/Wizard.Controls/EtchedLine.cs deleted file mode 100644 index effe94e..0000000 --- a/Manager/TestWizard/Backup/Wizard.Controls/EtchedLine.cs +++ /dev/null @@ -1,136 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Windows.Forms; - -namespace Wizard.Controls -{ - /// - /// Summary description for UserControl1. - /// - public class EtchedLine : System.Windows.Forms.UserControl - { - /// - /// Required designer variable. - /// - private System.ComponentModel.Container components = null; - - public EtchedLine() - { - // This call is required by the Windows.Forms Form Designer. - InitializeComponent(); - - // Avoid receiving the focus. - SetStyle(ControlStyles.Selectable, false); - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if( components != null ) - components.Dispose(); - } - base.Dispose( disposing ); - } - - #region Component Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - // - // EtchedLine - // - this.Name = "EtchedLine"; - } - #endregion - - protected override void OnPaint(PaintEventArgs e) - { - base.OnPaint(e); - - Brush lightBrush = new SolidBrush(_lightColor); - Brush darkBrush = new SolidBrush(_darkColor); - Pen lightPen = new Pen(lightBrush, 1); - Pen darkPen = new Pen(darkBrush, 1); - - if (this.Edge == EtchEdge.Top) - { - e.Graphics.DrawLine(darkPen, 0, 0, this.Width, 0); - e.Graphics.DrawLine(lightPen, 0, 1, this.Width, 1); - } - else if (this.Edge == EtchEdge.Bottom) - { - e.Graphics.DrawLine(darkPen, 0, this.Height - 2, - this.Width, this.Height - 2); - e.Graphics.DrawLine(lightPen, 0, this.Height - 1, - this.Width, this.Height - 1); - } - } - - protected override void OnResize(EventArgs e) - { - base.OnResize (e); - - Refresh(); - } - - Color _darkColor = SystemColors.ControlDark; - - [Category("Appearance")] - Color DarkColor - { - get { return _darkColor; } - - set - { - _darkColor = value; - Refresh(); - } - } - - Color _lightColor = SystemColors.ControlLightLight; - - [Category("Appearance")] - Color LightColor - { - get { return _lightColor; } - - set - { - _lightColor = value; - Refresh(); - } - } - - EtchEdge _edge = EtchEdge.Top; - - [Category("Appearance")] - public EtchEdge Edge - { - get - { - return _edge; - } - - set - { - _edge = value; - Refresh(); - } - } - } - - public enum EtchEdge - { - Top, Bottom - } -} diff --git a/Manager/TestWizard/Backup/Wizard.Controls/EtchedLine.resx b/Manager/TestWizard/Backup/Wizard.Controls/EtchedLine.resx deleted file mode 100644 index 3eb7993..0000000 --- a/Manager/TestWizard/Backup/Wizard.Controls/EtchedLine.resx +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - False - - - True - - - True - - - 80 - - - (Default) - - - False - - - Private - - - EtchedLine - - - 8, 8 - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.Controls/Wizard.Controls.csproj b/Manager/TestWizard/Backup/Wizard.Controls/Wizard.Controls.csproj deleted file mode 100644 index e11b88a..0000000 --- a/Manager/TestWizard/Backup/Wizard.Controls/Wizard.Controls.csproj +++ /dev/null @@ -1,136 +0,0 @@ - - - - Local - 8.0.30319 - 2.0 - {23AD43FF-38F2-4FEC-9FAA-D7B2FA54492B} - Debug - AnyCPU - - - Wizard.Controls - - JScript - Grid - IE50 - false - Library - Wizard.Controls - OnBuildSuccess - - - - v2.0 - - - 0.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - false - true - - - bin\Debug\ - false - 285212672 - false - - DEBUG;TRACE - - true - 4096 - false - - false - false - false - false - 4 - full - prompt - AllRules.ruleset - - - bin\Release\ - false - 285212672 - false - - TRACE - - false - 4096 - false - - true - false - false - false - 4 - none - prompt - AllRules.ruleset - - - - System - - - System.Data - - - System.Drawing - - - System.Windows.Forms - - - System.XML - - - - - Code - - - UserControl - - - EtchedLine.cs - - - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - true - - - False - Windows Installer 3.1 - true - - - - - - - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.Controls/Wizard.Controls.csproj.user b/Manager/TestWizard/Backup/Wizard.Controls/Wizard.Controls.csproj.user deleted file mode 100644 index 6f23531..0000000 --- a/Manager/TestWizard/Backup/Wizard.Controls/Wizard.Controls.csproj.user +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - en-US - false - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.UI/AssemblyInfo.cs b/Manager/TestWizard/Backup/Wizard.UI/AssemblyInfo.cs deleted file mode 100644 index 8b578a6..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/AssemblyInfo.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -// -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -// -[assembly: AssemblyTitle("")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: - -[assembly: AssemblyVersion("1.0.0.0")] - -// -// In order to sign your assembly you must specify a key to use. Refer to the -// Microsoft .NET Framework documentation for more information on assembly signing. -// -// Use the attributes below to control which key is used for signing. -// -// Notes: -// (*) If no key is specified, the assembly is not signed. -// (*) KeyName refers to a key that has been installed in the Crypto Service -// Provider (CSP) on your machine. KeyFile refers to a file which contains -// a key. -// (*) If the KeyFile and the KeyName values are both specified, the -// following processing occurs: -// (1) If the KeyName can be found in the CSP, that key is used. -// (2) If the KeyName does not exist and the KeyFile does exist, the key -// in the KeyFile is installed into the CSP and used. -// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. -// When specifying the KeyFile, the location of the KeyFile should be -// relative to the project output directory which is -// %Project Directory%\obj\. For example, if your KeyFile is -// located in the project directory, you would specify the AssemblyKeyFile -// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] -// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework -// documentation for more information on this. -// -[assembly: AssemblyDelaySign(false)] -[assembly: AssemblyKeyFile("")] -[assembly: AssemblyKeyName("")] diff --git a/Manager/TestWizard/Backup/Wizard.UI/Bitmaps/ExampleSidebar.bmp b/Manager/TestWizard/Backup/Wizard.UI/Bitmaps/ExampleSidebar.bmp deleted file mode 100644 index 54f4bf0..0000000 Binary files a/Manager/TestWizard/Backup/Wizard.UI/Bitmaps/ExampleSidebar.bmp and /dev/null differ diff --git a/Manager/TestWizard/Backup/Wizard.UI/ExternalWizardPage.cs b/Manager/TestWizard/Backup/Wizard.UI/ExternalWizardPage.cs deleted file mode 100644 index 32c9226..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/ExternalWizardPage.cs +++ /dev/null @@ -1,67 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; - -namespace Wizard.UI -{ - public class ExternalWizardPage : Wizard.UI.WizardPage - { - public Wizard.UI.WizardSidebar Sidebar; - private System.ComponentModel.IContainer components = null; - - public ExternalWizardPage() - { - // This call is required by the Windows Form Designer. - InitializeComponent(); - - // TODO: Add any initialization after the InitializeComponent call - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if (components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.Sidebar = new Wizard.UI.WizardSidebar(); - this.SuspendLayout(); - // - // Sidebar - // - this.Sidebar.Dock = System.Windows.Forms.DockStyle.Left; - this.Sidebar.Location = new System.Drawing.Point(0, 0); - this.Sidebar.Name = "Sidebar"; - this.Sidebar.Size = new System.Drawing.Size(165, 208); - this.Sidebar.TabIndex = 0; - // - // ExternalWizardPage - // - this.BackColor = System.Drawing.SystemColors.Window; - this.Controls.Add(this.Sidebar); - this.Name = "ExternalWizardPage"; - this.Size = new System.Drawing.Size(424, 208); - this.ResumeLayout(false); - - } - #endregion - } -} - diff --git a/Manager/TestWizard/Backup/Wizard.UI/ExternalWizardPage.resx b/Manager/TestWizard/Backup/Wizard.UI/ExternalWizardPage.resx deleted file mode 100644 index 6b96786..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/ExternalWizardPage.resx +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - Private - - - Public - - - ExternalWizardPage - - - False - - - False - - - True - - - True - - - 80 - - - (Default) - - - False - - - Private - - - 8, 8 - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.UI/InternalWizardPage.cs b/Manager/TestWizard/Backup/Wizard.UI/InternalWizardPage.cs deleted file mode 100644 index f1bd115..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/InternalWizardPage.cs +++ /dev/null @@ -1,69 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Windows.Forms; - -namespace Wizard.UI -{ - public class InternalWizardPage : Wizard.UI.WizardPage - { - public Wizard.UI.WizardBanner Banner; - private System.ComponentModel.IContainer components = null; - - public InternalWizardPage() - { - // This call is required by the Windows Form Designer. - InitializeComponent(); - - // TODO: Add any initialization after the InitializeComponent call - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if (components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.Banner = new Wizard.UI.WizardBanner(); - this.SuspendLayout(); - // - // Banner - // - this.Banner.BackColor = System.Drawing.SystemColors.Window; - this.Banner.Dock = System.Windows.Forms.DockStyle.Top; - this.Banner.Location = new System.Drawing.Point(0, 0); - this.Banner.Name = "Banner"; - this.Banner.Size = new System.Drawing.Size(432, 64); - this.Banner.Subtitle = "Subtitle"; - this.Banner.TabIndex = 0; - this.Banner.Title = "Title"; - // - // InternalWizardPage - // - this.Controls.Add(this.Banner); - this.Name = "InternalWizardPage"; - this.Size = new System.Drawing.Size(432, 150); - this.ResumeLayout(false); - - } - #endregion - } -} - diff --git a/Manager/TestWizard/Backup/Wizard.UI/InternalWizardPage.resx b/Manager/TestWizard/Backup/Wizard.UI/InternalWizardPage.resx deleted file mode 100644 index 540944c..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/InternalWizardPage.resx +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - Private - - - Public - - - False - - - False - - - True - - - True - - - InternalWizardPage - - - (Default) - - - False - - - Private - - - 80 - - - 8, 8 - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.UI/Wizard.UI.csproj b/Manager/TestWizard/Backup/Wizard.UI/Wizard.UI.csproj deleted file mode 100644 index 7f00d00..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/Wizard.UI.csproj +++ /dev/null @@ -1,175 +0,0 @@ - - - - Local - 8.0.30319 - 2.0 - {80614F74-563D-418E-9BF6-1294F73521C0} - Debug - AnyCPU - - - Wizard.UI - - JScript - Grid - IE50 - false - Library - Wizard.UI - OnBuildSuccess - - - - v2.0 - - - 0.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - false - true - - - bin\Debug\ - false - 285212672 - false - - DEBUG;TRACE - - true - 4096 - false - - false - false - false - false - 4 - full - prompt - AllRules.ruleset - - - bin\Release\ - false - 285212672 - false - - TRACE - - false - 4096 - false - - true - false - false - false - 4 - none - prompt - AllRules.ruleset - - - - Wizard.Controls - {23AD43FF-38F2-4FEC-9FAA-D7B2FA54492B} - {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - - - System - - - System.Data - - - System.Drawing - - - System.Windows.Forms - - - System.XML - - - - - Code - - - UserControl - - - UserControl - - - UserControl - - - UserControl - - - Code - - - Form - - - UserControl - - - - ExternalWizardPage.cs - - - InternalWizardPage.cs - - - WizardBanner.cs - - - WizardPage.cs - - - WizardSheet.cs - - - WizardSidebar.cs - - - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - true - - - False - Windows Installer 3.1 - true - - - - - - - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.UI/Wizard.UI.csproj.user b/Manager/TestWizard/Backup/Wizard.UI/Wizard.UI.csproj.user deleted file mode 100644 index 6f23531..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/Wizard.UI.csproj.user +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - en-US - false - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardBanner.cs b/Manager/TestWizard/Backup/Wizard.UI/WizardBanner.cs deleted file mode 100644 index 1027ed4..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardBanner.cs +++ /dev/null @@ -1,117 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Windows.Forms; - -namespace Wizard.UI -{ - /// - /// Summary description for WizardBanner. - /// - public class WizardBanner : System.Windows.Forms.UserControl - { - private System.Windows.Forms.Label titleLabel; - private System.Windows.Forms.Label subtitleLabel; - private Wizard.Controls.EtchedLine etchedLine1; - /// - /// Required designer variable. - /// - private System.ComponentModel.Container components = null; - - public WizardBanner() - { - // This call is required by the Windows.Forms Form Designer. - InitializeComponent(); - - // Avoid getting the focus. - this.SetStyle(ControlStyles.Selectable, false); - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if(components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Component Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.titleLabel = new System.Windows.Forms.Label(); - this.subtitleLabel = new System.Windows.Forms.Label(); - this.etchedLine1 = new Wizard.Controls.EtchedLine(); - this.SuspendLayout(); - // - // titleLabel - // - this.titleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.titleLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); - this.titleLabel.Location = new System.Drawing.Point(16, 8); - this.titleLabel.Name = "titleLabel"; - this.titleLabel.Size = new System.Drawing.Size(432, 16); - this.titleLabel.TabIndex = 0; - this.titleLabel.Text = "Title"; - // - // subtitleLabel - // - this.subtitleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.subtitleLabel.Location = new System.Drawing.Point(40, 24); - this.subtitleLabel.Name = "subtitleLabel"; - this.subtitleLabel.Size = new System.Drawing.Size(408, 32); - this.subtitleLabel.TabIndex = 1; - this.subtitleLabel.Text = "Subtitle"; - // - // etchedLine1 - // - this.etchedLine1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.etchedLine1.Edge = Wizard.Controls.EtchEdge.Bottom; - this.etchedLine1.Location = new System.Drawing.Point(0, 56); - this.etchedLine1.Name = "etchedLine1"; - this.etchedLine1.Size = new System.Drawing.Size(456, 8); - this.etchedLine1.TabIndex = 0; - // - // WizardBanner - // - this.BackColor = System.Drawing.SystemColors.Window; - this.Controls.Add(this.etchedLine1); - this.Controls.Add(this.subtitleLabel); - this.Controls.Add(this.titleLabel); - this.Name = "WizardBanner"; - this.Size = new System.Drawing.Size(456, 64); - this.ResumeLayout(false); - - } - #endregion - - [Category("Appearance")] - public string Title - { - get { return titleLabel.Text; } - set { titleLabel.Text = value; } - } - - [Category("Appearance")] - public string Subtitle - { - get { return subtitleLabel.Text; } - set { subtitleLabel.Text = value; } - } - } -} diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardBanner.resx b/Manager/TestWizard/Backup/Wizard.UI/WizardBanner.resx deleted file mode 100644 index 3c9fd8b..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardBanner.resx +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - Private - - - Private - - - False - - - Private - - - Private - - - False - - - Private - - - Private - - - False - - - False - - - True - - - True - - - 80 - - - (Default) - - - False - - - WizardBanner - - - Private - - - 8, 8 - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardPage.cs b/Manager/TestWizard/Backup/Wizard.UI/WizardPage.cs deleted file mode 100644 index fdd7047..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardPage.cs +++ /dev/null @@ -1,109 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Windows.Forms; - -namespace Wizard.UI -{ - [DefaultEvent("SetActive")] - public class WizardPage : System.Windows.Forms.UserControl - { - private System.ComponentModel.Container components = null; - - public WizardPage() - { - InitializeComponent(); - } - - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if(components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Component Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - components = new System.ComponentModel.Container(); - } - #endregion - - protected WizardSheet GetWizard() - { - WizardSheet wizard = (WizardSheet)this.ParentForm; - return wizard; - } - - protected void SetWizardButtons(WizardButtons buttons) - { - GetWizard().SetWizardButtons(buttons); - } - - protected void EnableCancelButton(bool enableCancelButton) - { - GetWizard().EnableCancelButton(enableCancelButton); - } - - protected void PressButton(WizardButtons buttons) - { - GetWizard().PressButton(buttons); - } - - [Category("Wizard")] - public event CancelEventHandler SetActive; - - public virtual void OnSetActive(CancelEventArgs e) - { - if (SetActive != null) - SetActive(this, e); - } - - [Category("Wizard")] - public event WizardPageEventHandler WizardNext; - - public virtual void OnWizardNext(WizardPageEventArgs e) - { - if (WizardNext != null) - WizardNext(this, e); - } - - [Category("Wizard")] - public event WizardPageEventHandler WizardBack; - - public virtual void OnWizardBack(WizardPageEventArgs e) - { - if (WizardBack != null) - WizardBack(this, e); - } - - [Category("Wizard")] - public event CancelEventHandler WizardFinish; - - public virtual void OnWizardFinish(CancelEventArgs e) - { - if (WizardFinish != null) - WizardFinish(this, e); - } - - [Category("Wizard")] - public event CancelEventHandler QueryCancel; - - public virtual void OnQueryCancel(CancelEventArgs e) - { - if (QueryCancel != null) - QueryCancel(this, e); - } - } -} diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardPage.resx b/Manager/TestWizard/Backup/Wizard.UI/WizardPage.resx deleted file mode 100644 index 3f337e0..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardPage.resx +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.0.0.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardPageEventArgs.cs b/Manager/TestWizard/Backup/Wizard.UI/WizardPageEventArgs.cs deleted file mode 100644 index 482d871..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardPageEventArgs.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using System.ComponentModel; - -namespace Wizard.UI -{ - public class WizardPageEventArgs : CancelEventArgs - { - string _newPage = null; - - public string NewPage - { - get { return _newPage; } - set { _newPage = value; } - } - } - - public delegate void WizardPageEventHandler(object sender, WizardPageEventArgs e); -} diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardSheet.cs b/Manager/TestWizard/Backup/Wizard.UI/WizardSheet.cs deleted file mode 100644 index cb2e52a..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardSheet.cs +++ /dev/null @@ -1,399 +0,0 @@ -using System; -using System.Drawing; -using System.Collections; -using System.ComponentModel; -using System.Windows.Forms; - -namespace Wizard.UI -{ - /// - /// Summary description for WizardSheet. - /// - public class WizardSheet : System.Windows.Forms.Form - { - /// - /// Required designer variable. - /// - private System.ComponentModel.Container components = null; - - public WizardSheet() - { - // - // Required for Windows Form Designer support - // - InitializeComponent(); - - // - // TODO: Add any constructor code after InitializeComponent call - // - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if(components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Windows Form Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.backButton = new System.Windows.Forms.Button(); - this.nextButton = new System.Windows.Forms.Button(); - this.finishButton = new System.Windows.Forms.Button(); - this.cancelButton = new System.Windows.Forms.Button(); - this.buttonPanel = new System.Windows.Forms.Panel(); - this.etchedLine1 = new Wizard.Controls.EtchedLine(); - this.pagePanel = new System.Windows.Forms.Panel(); - this.buttonPanel.SuspendLayout(); - this.SuspendLayout(); - // - // backButton - // - this.backButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.System; - this.backButton.Location = new System.Drawing.Point(134, 8); - this.backButton.Name = "backButton"; - this.backButton.TabIndex = 0; - this.backButton.Text = "< &Back"; - this.backButton.Click += new System.EventHandler(this.backButton_Click); - // - // nextButton - // - this.nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.nextButton.FlatStyle = System.Windows.Forms.FlatStyle.System; - this.nextButton.Location = new System.Drawing.Point(208, 8); - this.nextButton.Name = "nextButton"; - this.nextButton.TabIndex = 1; - this.nextButton.Text = "&Next >"; - this.nextButton.Click += new System.EventHandler(this.nextButton_Click); - // - // finishButton - // - this.finishButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.finishButton.FlatStyle = System.Windows.Forms.FlatStyle.System; - this.finishButton.Location = new System.Drawing.Point(208, 8); - this.finishButton.Name = "finishButton"; - this.finishButton.TabIndex = 2; - this.finishButton.Text = "&Finish"; - this.finishButton.Click += new System.EventHandler(this.finishButton_Click); - // - // cancelButton - // - this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System; - this.cancelButton.Location = new System.Drawing.Point(296, 8); - this.cancelButton.Name = "cancelButton"; - this.cancelButton.TabIndex = 3; - this.cancelButton.Text = "Cancel"; - this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); - // - // buttonPanel - // - this.buttonPanel.Controls.Add(this.etchedLine1); - this.buttonPanel.Controls.Add(this.cancelButton); - this.buttonPanel.Controls.Add(this.backButton); - this.buttonPanel.Controls.Add(this.finishButton); - this.buttonPanel.Controls.Add(this.nextButton); - this.buttonPanel.Dock = System.Windows.Forms.DockStyle.Bottom; - this.buttonPanel.Location = new System.Drawing.Point(0, 101); - this.buttonPanel.Name = "buttonPanel"; - this.buttonPanel.Size = new System.Drawing.Size(384, 40); - this.buttonPanel.TabIndex = 4; - // - // etchedLine1 - // - this.etchedLine1.Dock = System.Windows.Forms.DockStyle.Top; - this.etchedLine1.Edge = Wizard.Controls.EtchEdge.Top; - this.etchedLine1.Location = new System.Drawing.Point(0, 0); - this.etchedLine1.Name = "etchedLine1"; - this.etchedLine1.Size = new System.Drawing.Size(384, 8); - this.etchedLine1.TabIndex = 4; - // - // pagePanel - // - this.pagePanel.Dock = System.Windows.Forms.DockStyle.Fill; - this.pagePanel.Location = new System.Drawing.Point(0, 0); - this.pagePanel.Name = "pagePanel"; - this.pagePanel.Size = new System.Drawing.Size(384, 101); - this.pagePanel.TabIndex = 5; - // - // WizardSheet - // - this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); - this.ClientSize = new System.Drawing.Size(384, 141); - this.Controls.Add(this.pagePanel); - this.Controls.Add(this.buttonPanel); - this.Name = "WizardSheet"; - this.Text = "WizardSheet"; - this.Closing += new System.ComponentModel.CancelEventHandler(this.WizardSheet_Closing); - this.Load += new System.EventHandler(this.WizardSheet_Load); - this.buttonPanel.ResumeLayout(false); - this.ResumeLayout(false); - - } - #endregion - - private System.Windows.Forms.Button backButton; - private System.Windows.Forms.Button nextButton; - private System.Windows.Forms.Button finishButton; - private System.Windows.Forms.Button cancelButton; - private System.Windows.Forms.Panel buttonPanel; - private Wizard.Controls.EtchedLine etchedLine1; - private System.Windows.Forms.Panel pagePanel; - - private IList _pages = new ArrayList(); - private WizardPage _activePage; - - private void WizardSheet_Load(object sender, System.EventArgs e) - { - if (_pages.Count != 0) - { - ResizeToFit(); - SetActivePage(0); - } - else - SetWizardButtons(WizardButtons.None); - } - - private void ResizeToFit() - { - Size maxPageSize = new Size(buttonPanel.Width, 0); - - foreach (WizardPage page in _pages) - { - if (page.Width > maxPageSize.Width) - maxPageSize.Width = page.Width; - if (page.Height > maxPageSize.Height) - maxPageSize.Height = page.Height; - } - - foreach (WizardPage page in _pages) - { - page.Size = maxPageSize; - } - - Size extraSize = this.Size; - extraSize -= pagePanel.Size; - - Size newSize = maxPageSize + extraSize; - this.Size = newSize; - } - - public IList Pages - { - get { return _pages; } - } - - private int GetActiveIndex() - { - WizardPage activePage = GetActivePage(); - - for (int i = 0; i < _pages.Count; ++i) - { - if (activePage == _pages[i]) - return i; - } - - return -1; - } - - private WizardPage GetActivePage() - { - return _activePage; - } - - public void SetActivePage(int pageIndex) - { - if (pageIndex < 0 || pageIndex >= _pages.Count) - throw new ArgumentOutOfRangeException("pageIndex"); - - WizardPage page = (WizardPage)_pages[pageIndex]; - SetActivePage(page); - } - - private WizardPage FindPage(string pageName) - { - foreach (WizardPage page in _pages) - { - if (page.Name == pageName) - return page; - } - - return null; - } - - private void SetActivePage(string newPageName) - { - WizardPage newPage = FindPage(newPageName); - - if (newPage == null) - throw new Exception(string.Format("Can't find page named {0}", newPageName)); - - SetActivePage(newPage); - } - - private void SetActivePage(WizardPage newPage) - { - WizardPage oldActivePage = _activePage; - - // If this page isn't in the Controls collection, add it. - // This is what causes the Load event, so we defer - // it as late as possible. - if (!pagePanel.Controls.Contains(newPage)) - pagePanel.Controls.Add(newPage); - - // Show this page. - newPage.Visible = true; - - _activePage = newPage; - CancelEventArgs e = new CancelEventArgs(); - newPage.OnSetActive(e); - - if (e.Cancel) - { - newPage.Visible = false; - _activePage = oldActivePage; - } - - // Hide all of the other pages. - foreach (WizardPage page in _pages) - { - if (page != _activePage) - page.Visible = false; - } - } - - internal void SetWizardButtons(WizardButtons buttons) - { - // The Back button is simple. - backButton.Enabled = ((buttons & WizardButtons.Back) != 0); - - // The Next button is a bit more complicated. If we've got a Finish button, then it's disabled and hidden. - if ((buttons & WizardButtons.Finish) != 0) - { - finishButton.Visible = true; - finishButton.Enabled = true; - - nextButton.Visible = false; - nextButton.Enabled = false; - - this.AcceptButton = finishButton; - } - else - { - finishButton.Visible = false; - finishButton.Enabled = false; - - nextButton.Visible = true; - nextButton.Enabled = ((buttons & WizardButtons.Next) != 0); - - this.AcceptButton = nextButton; - } - } - - private WizardPageEventArgs PreChangePage(int delta) - { - // Figure out which page is next. - int activeIndex = GetActiveIndex(); - int nextIndex = activeIndex + delta; - - if (nextIndex < 0 || nextIndex >= _pages.Count) - nextIndex = activeIndex; - - // Fill in the event args. - WizardPage newPage = (WizardPage)_pages[nextIndex]; - - WizardPageEventArgs e = new WizardPageEventArgs(); - e.NewPage = newPage.Name; - e.Cancel = false; - - return e; - } - - private void PostChangePage(WizardPageEventArgs e) - { - if (!e.Cancel) - SetActivePage(e.NewPage); - } - - private void nextButton_Click(object sender, System.EventArgs e) - { - WizardPageEventArgs wpea = PreChangePage(+1); - _activePage.OnWizardNext(wpea); - PostChangePage(wpea); - } - - private void backButton_Click(object sender, System.EventArgs e) - { - WizardPageEventArgs wpea = PreChangePage(-1); - _activePage.OnWizardBack(wpea); - PostChangePage(wpea); - } - - private void finishButton_Click(object sender, System.EventArgs e) - { - CancelEventArgs cea = new CancelEventArgs(); - _activePage.OnWizardFinish(cea); - if (cea.Cancel) - return; - - this.DialogResult = DialogResult.OK; - this.Close(); - } - - internal void PressButton(WizardButtons buttons) - { - if ((buttons & WizardButtons.Finish) == WizardButtons.Finish) - finishButton.PerformClick(); - else if ((buttons & WizardButtons.Next) == WizardButtons.Next) - nextButton.PerformClick(); - else if ((buttons & WizardButtons.Back) == WizardButtons.Back) - backButton.PerformClick(); - } - - internal void EnableCancelButton(bool enableCancelButton) - { - cancelButton.Enabled = enableCancelButton; - } - - private void cancelButton_Click(object sender, System.EventArgs e) - { - this.Close(); - } - - private void WizardSheet_Closing(object sender, System.ComponentModel.CancelEventArgs e) - { - if (!cancelButton.Enabled) - e.Cancel = true; - else if (!finishButton.Enabled) - OnQueryCancel(e); - } - - protected virtual void OnQueryCancel(CancelEventArgs e) - { - _activePage.OnQueryCancel(e); - } - } - - [Flags] - public enum WizardButtons - { - None = 0x0000, - Back = 0x0001, - Next = 0x0002, - Finish = 0x0004, - } -} diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardSheet.resx b/Manager/TestWizard/Backup/Wizard.UI/WizardSheet.resx deleted file mode 100644 index 5e67857..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardSheet.resx +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - Private - - - Private - - - False - - - Private - - - Private - - - False - - - Private - - - Private - - - False - - - Private - - - Private - - - False - - - True - - - Private - - - 8, 8 - - - True - - - Private - - - False - - - Private - - - Private - - - False - - - True - - - Private - - - 8, 8 - - - True - - - Private - - - False - - - (Default) - - - False - - - False - - - 8, 8 - - - WizardSheet - - - True - - - 80 - - - True - - - Private - - \ No newline at end of file diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardSidebar.cs b/Manager/TestWizard/Backup/Wizard.UI/WizardSidebar.cs deleted file mode 100644 index 6f81fd9..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardSidebar.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Windows.Forms; - -namespace Wizard.UI -{ - /// - /// Summary description for WizardSidebar. - /// - public class WizardSidebar : System.Windows.Forms.UserControl - { - /// - /// Required designer variable. - /// - private System.ComponentModel.Container components = null; - - public WizardSidebar() - { - this.Dock = DockStyle.Left; - - // This call is required by the Windows.Forms Form Designer. - InitializeComponent(); - - // Set a default image. - Bitmap image = new Bitmap(this.GetType(), "Bitmaps.ExampleSidebar.bmp"); - this.BackgroundImage = image; - - // Avoid getting the focus. - this.SetStyle(ControlStyles.Selectable, false); - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if(components != null) - { - components.Dispose(); - } - } - base.Dispose( disposing ); - } - - #region Component Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - // - // WizardSidebar - // - this.Name = "WizardSidebar"; - this.Size = new System.Drawing.Size(165, 320); - } - #endregion - } -} diff --git a/Manager/TestWizard/Backup/Wizard.UI/WizardSidebar.resx b/Manager/TestWizard/Backup/Wizard.UI/WizardSidebar.resx deleted file mode 100644 index 04ae11c..0000000 --- a/Manager/TestWizard/Backup/Wizard.UI/WizardSidebar.resx +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.3 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - False - - - True - - - True - - - 80 - - - (Default) - - - False - - - Private - - - WizardSidebar - - - 8, 8 - - \ No newline at end of file diff --git a/Manager/TestWizard/UpgradeLog.XML b/Manager/TestWizard/UpgradeLog.XML deleted file mode 100644 index 82612b3..0000000 --- a/Manager/TestWizard/UpgradeLog.XML +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport.css b/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport.css deleted file mode 100644 index fae98af..0000000 --- a/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport.css +++ /dev/null @@ -1,207 +0,0 @@ -BODY -{ - BACKGROUND-COLOR: white; - FONT-FAMILY: "Verdana", sans-serif; - FONT-SIZE: 100%; - MARGIN-LEFT: 0px; - MARGIN-TOP: 0px -} -P -{ - FONT-FAMILY: "Verdana", sans-serif; - FONT-SIZE: 70%; - LINE-HEIGHT: 12pt; - MARGIN-BOTTOM: 0px; - MARGIN-LEFT: 10px; - MARGIN-TOP: 10px -} -.note -{ - BACKGROUND-COLOR: #ffffff; - COLOR: #336699; - FONT-FAMILY: "Verdana", sans-serif; - FONT-SIZE: 100%; - MARGIN-BOTTOM: 0px; - MARGIN-LEFT: 0px; - MARGIN-TOP: 0px; - PADDING-RIGHT: 10px -} -.infotable -{ - BACKGROUND-COLOR: #f0f0e0; - BORDER-BOTTOM: #ffffff 0px solid; - BORDER-COLLAPSE: collapse; - BORDER-LEFT: #ffffff 0px solid; - BORDER-RIGHT: #ffffff 0px solid; - BORDER-TOP: #ffffff 0px solid; - FONT-SIZE: 70%; - MARGIN-LEFT: 10px -} -.issuetable -{ - BACKGROUND-COLOR: #ffffe8; - BORDER-COLLAPSE: collapse; - COLOR: #000000; - FONT-SIZE: 100%; - MARGIN-BOTTOM: 10px; - MARGIN-LEFT: 13px; - MARGIN-TOP: 0px -} -.issuetitle -{ - BACKGROUND-COLOR: #ffffff; - BORDER-BOTTOM: #dcdcdc 1px solid; - BORDER-TOP: #dcdcdc 1px; - COLOR: #003366; - FONT-WEIGHT: normal -} -.header -{ - BACKGROUND-COLOR: #cecf9c; - BORDER-BOTTOM: #ffffff 1px solid; - BORDER-LEFT: #ffffff 1px solid; - BORDER-RIGHT: #ffffff 1px solid; - BORDER-TOP: #ffffff 1px solid; - COLOR: #000000; - FONT-WEIGHT: bold -} -.issuehdr -{ - BACKGROUND-COLOR: #E0EBF5; - BORDER-BOTTOM: #dcdcdc 1px solid; - BORDER-TOP: #dcdcdc 1px solid; - COLOR: #000000; - FONT-WEIGHT: normal -} -.issuenone -{ - BACKGROUND-COLOR: #ffffff; - BORDER-BOTTOM: 0px; - BORDER-LEFT: 0px; - BORDER-RIGHT: 0px; - BORDER-TOP: 0px; - COLOR: #000000; - FONT-WEIGHT: normal -} -.content -{ - BACKGROUND-COLOR: #e7e7ce; - BORDER-BOTTOM: #ffffff 1px solid; - BORDER-LEFT: #ffffff 1px solid; - BORDER-RIGHT: #ffffff 1px solid; - BORDER-TOP: #ffffff 1px solid; - PADDING-LEFT: 3px -} -.issuecontent -{ - BACKGROUND-COLOR: #ffffff; - BORDER-BOTTOM: #dcdcdc 1px solid; - BORDER-TOP: #dcdcdc 1px solid; - PADDING-LEFT: 3px -} -A:link -{ - COLOR: #cc6633; - TEXT-DECORATION: underline -} -A:visited -{ - COLOR: #cc6633; -} -A:active -{ - COLOR: #cc6633; -} -A:hover -{ - COLOR: #cc3300; - TEXT-DECORATION: underline -} -H1 -{ - BACKGROUND-COLOR: #003366; - BORDER-BOTTOM: #336699 6px solid; - COLOR: #ffffff; - FONT-SIZE: 130%; - FONT-WEIGHT: normal; - MARGIN: 0em 0em 0em -20px; - PADDING-BOTTOM: 8px; - PADDING-LEFT: 30px; - PADDING-TOP: 16px -} -H2 -{ - COLOR: #000000; - FONT-SIZE: 80%; - FONT-WEIGHT: bold; - MARGIN-BOTTOM: 3px; - MARGIN-LEFT: 10px; - MARGIN-TOP: 20px; - PADDING-LEFT: 0px -} -H3 -{ - COLOR: #000000; - FONT-SIZE: 80%; - FONT-WEIGHT: bold; - MARGIN-BOTTOM: -5px; - MARGIN-LEFT: 10px; - MARGIN-TOP: 20px -} -H4 -{ - COLOR: #000000; - FONT-SIZE: 70%; - FONT-WEIGHT: bold; - MARGIN-BOTTOM: 0px; - MARGIN-TOP: 15px; - PADDING-BOTTOM: 0px -} -UL -{ - COLOR: #000000; - FONT-SIZE: 70%; - LIST-STYLE: square; - MARGIN-BOTTOM: 0pt; - MARGIN-TOP: 0pt -} -OL -{ - COLOR: #000000; - FONT-SIZE: 70%; - LIST-STYLE: square; - MARGIN-BOTTOM: 0pt; - MARGIN-TOP: 0pt -} -LI -{ - LIST-STYLE: square; - MARGIN-LEFT: 0px -} -.expandable -{ - CURSOR: hand -} -.expanded -{ - color: black -} -.collapsed -{ - DISPLAY: none -} -.foot -{ -BACKGROUND-COLOR: #ffffff; -BORDER-BOTTOM: #cecf9c 1px solid; -BORDER-TOP: #cecf9c 2px solid -} -.settings -{ -MARGIN-LEFT: 25PX; -} -.help -{ -TEXT-ALIGN: right; -margin-right: 10px; -} diff --git a/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport.xslt b/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport.xslt deleted file mode 100644 index 73c4e7a..0000000 --- a/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport.xslt +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- Solution: - Project: - - - - - - - -

- - - - - - - - - - - - - - - - - - - - - - - - src - - - - - - - - - - - - -
FilenameStatusErrorsWarnings
- javascript:document.images[''].click()src - - - - Converted - - - - Converted - -
- - files - - - 1 file - - - Converted:
- Not converted: -
-
-
- - - - : - - - - - - - - - Conversion Report - <xsl:if test="Properties/Property[@Name='LogNumber']"> - <xsl:value-of select="Properties/Property[@Name='LogNumber']/@Value"/> - </xsl:if> - - - - -

Conversion Report -

- -

- Time of Conversion:
-

- - - - - - - - - - - - - - - - - - - - - - - - -

- - - - - -
- Conversion Settings -

- - -
-
diff --git a/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport_Minus.gif b/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport_Minus.gif deleted file mode 100644 index 17751cb..0000000 Binary files a/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport_Minus.gif and /dev/null differ diff --git a/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport_Plus.gif b/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport_Plus.gif deleted file mode 100644 index f6009ca..0000000 Binary files a/Manager/TestWizard/_UpgradeReport_Files/UpgradeReport_Plus.gif and /dev/null differ