mirror of
https://github.com/tenrok/Rfid-Credential-Provider.git
synced 2026-06-14 18:52:23 +03:00
Adding files from my site
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
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
|
||||
}
|
||||
|
||||
/// <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()
|
||||
{
|
||||
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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user