mirror of
https://github.com/tenrok/Rfid-Credential-Provider.git
synced 2026-05-30 15:34:04 +03:00
63 lines
1.3 KiB
C#
63 lines
1.3 KiB
C#
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());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
protected override void Dispose( bool disposing )
|
|
{
|
|
if( disposing )
|
|
{
|
|
if (components != null)
|
|
{
|
|
components.Dispose();
|
|
}
|
|
}
|
|
base.Dispose( disposing );
|
|
}
|
|
|
|
#region Designer generated code
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|