home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / CMCD1004.ISO / Software / Shareware / Programare / netxp / netxp.exe / Samples / CS / Controls / WizardTest.cs < prev    next >
Encoding:
Text File  |  2004-03-28  |  6.1 KB  |  221 lines

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Windows.Forms;
  6.  
  7. namespace Controls
  8. {
  9.     public class WizardTest : NETXP.Forms.Wizard
  10.     {
  11.         private System.Windows.Forms.TabPage tabPage1;
  12.         private System.Windows.Forms.TabPage tabPage2;
  13.         private System.Windows.Forms.TabPage tabPage3;
  14.         private System.Windows.Forms.TabPage tabPage4;
  15.         private System.Windows.Forms.TabPage tabPage5;
  16.         private System.Windows.Forms.Label label1;
  17.         private System.Windows.Forms.Label label2;
  18.         private System.Windows.Forms.Label label3;
  19.         private System.Windows.Forms.Label label4;
  20.         private System.Windows.Forms.Label label5;
  21.         private System.ComponentModel.IContainer components = null;
  22.  
  23.         public WizardTest()
  24.         {
  25.             // This call is required by the Windows Form Designer.
  26.             InitializeComponent();
  27.  
  28.             // TODO: Add any initialization after the InitializeComponent call
  29.         }
  30.  
  31.         /// <summary>
  32.         /// Clean up any resources being used.
  33.         /// </summary>
  34.         protected override void Dispose( bool disposing )
  35.         {
  36.             if( disposing )
  37.             {
  38.                 if (components != null) 
  39.                 {
  40.                     components.Dispose();
  41.                 }
  42.             }
  43.             base.Dispose( disposing );
  44.         }
  45.  
  46.         #region Designer generated code
  47.         /// <summary>
  48.         /// Required method for Designer support - do not modify
  49.         /// the contents of this method with the code editor.
  50.         /// </summary>
  51.         private void InitializeComponent()
  52.         {
  53.             this.tabPage1 = new System.Windows.Forms.TabPage();
  54.             this.tabPage2 = new System.Windows.Forms.TabPage();
  55.             this.tabPage3 = new System.Windows.Forms.TabPage();
  56.             this.tabPage4 = new System.Windows.Forms.TabPage();
  57.             this.tabPage5 = new System.Windows.Forms.TabPage();
  58.             this.label1 = new System.Windows.Forms.Label();
  59.             this.label2 = new System.Windows.Forms.Label();
  60.             this.label3 = new System.Windows.Forms.Label();
  61.             this.label4 = new System.Windows.Forms.Label();
  62.             this.label5 = new System.Windows.Forms.Label();
  63.             this.WizardPages.SuspendLayout();
  64.             this.tabPage1.SuspendLayout();
  65.             this.tabPage2.SuspendLayout();
  66.             this.tabPage3.SuspendLayout();
  67.             this.tabPage4.SuspendLayout();
  68.             this.tabPage5.SuspendLayout();
  69.             // 
  70.             // TitlePanel
  71.             // 
  72.             this.TitlePanel.DockPadding.All = 8;
  73.             this.TitlePanel.Name = "TitlePanel";
  74.             // 
  75.             // ProductLogo
  76.             // 
  77.             this.ProductLogo.Name = "ProductLogo";
  78.             // 
  79.             // PageTitle
  80.             // 
  81.             this.PageTitle.Name = "PageTitle";
  82.             // 
  83.             // Separator
  84.             // 
  85.             this.Separator.Name = "Separator";
  86.             // 
  87.             // WizardLogo
  88.             // 
  89.             this.WizardLogo.Name = "WizardLogo";
  90.             // 
  91.             // LowerPanel
  92.             // 
  93.             this.LowerPanel.Name = "LowerPanel";
  94.             // 
  95.             // CancelBtn
  96.             // 
  97.             this.CancelBtn.Name = "CancelBtn";
  98.             // 
  99.             // NextButton
  100.             // 
  101.             this.NextButton.Name = "NextButton";
  102.             // 
  103.             // BackButton
  104.             // 
  105.             this.BackButton.Name = "BackButton";
  106.             // 
  107.             // WizardPages
  108.             // 
  109.             this.WizardPages.Controls.Add(this.tabPage1);
  110.             this.WizardPages.Controls.Add(this.tabPage2);
  111.             this.WizardPages.Controls.Add(this.tabPage3);
  112.             this.WizardPages.Controls.Add(this.tabPage4);
  113.             this.WizardPages.Controls.Add(this.tabPage5);
  114.             this.WizardPages.Name = "WizardPages";
  115.             // 
  116.             // EtchedLine
  117.             // 
  118.             this.EtchedLine.Name = "EtchedLine";
  119.             // 
  120.             // OKBtn
  121.             // 
  122.             this.OKBtn.Name = "OKBtn";
  123.             // 
  124.             // tabPage1
  125.             // 
  126.             this.tabPage1.Controls.Add(this.label1);
  127.             this.tabPage1.Location = new System.Drawing.Point(4, 22);
  128.             this.tabPage1.Name = "tabPage1";
  129.             this.tabPage1.Size = new System.Drawing.Size(568, 298);
  130.             this.tabPage1.TabIndex = 0;
  131.             this.tabPage1.Text = "tabPage1";
  132.             // 
  133.             // tabPage2
  134.             // 
  135.             this.tabPage2.Controls.Add(this.label2);
  136.             this.tabPage2.Location = new System.Drawing.Point(4, 22);
  137.             this.tabPage2.Name = "tabPage2";
  138.             this.tabPage2.Size = new System.Drawing.Size(568, 298);
  139.             this.tabPage2.TabIndex = 1;
  140.             this.tabPage2.Text = "tabPage2";
  141.             // 
  142.             // tabPage3
  143.             // 
  144.             this.tabPage3.Controls.Add(this.label3);
  145.             this.tabPage3.Location = new System.Drawing.Point(4, 22);
  146.             this.tabPage3.Name = "tabPage3";
  147.             this.tabPage3.Size = new System.Drawing.Size(568, 298);
  148.             this.tabPage3.TabIndex = 2;
  149.             this.tabPage3.Text = "tabPage3";
  150.             // 
  151.             // tabPage4
  152.             // 
  153.             this.tabPage4.Controls.Add(this.label4);
  154.             this.tabPage4.Location = new System.Drawing.Point(4, 22);
  155.             this.tabPage4.Name = "tabPage4";
  156.             this.tabPage4.Size = new System.Drawing.Size(568, 298);
  157.             this.tabPage4.TabIndex = 3;
  158.             this.tabPage4.Text = "tabPage4";
  159.             // 
  160.             // tabPage5
  161.             // 
  162.             this.tabPage5.Controls.Add(this.label5);
  163.             this.tabPage5.Location = new System.Drawing.Point(4, 22);
  164.             this.tabPage5.Name = "tabPage5";
  165.             this.tabPage5.Size = new System.Drawing.Size(568, 298);
  166.             this.tabPage5.TabIndex = 4;
  167.             this.tabPage5.Text = "tabPage5";
  168.             // 
  169.             // label1
  170.             // 
  171.             this.label1.Location = new System.Drawing.Point(234, 138);
  172.             this.label1.Name = "label1";
  173.             this.label1.TabIndex = 0;
  174.             this.label1.Text = "page 1";
  175.             // 
  176.             // label2
  177.             // 
  178.             this.label2.Location = new System.Drawing.Point(234, 138);
  179.             this.label2.Name = "label2";
  180.             this.label2.TabIndex = 1;
  181.             this.label2.Text = "page 2";
  182.             // 
  183.             // label3
  184.             // 
  185.             this.label3.Location = new System.Drawing.Point(234, 138);
  186.             this.label3.Name = "label3";
  187.             this.label3.TabIndex = 1;
  188.             this.label3.Text = "page 3";
  189.             // 
  190.             // label4
  191.             // 
  192.             this.label4.Location = new System.Drawing.Point(234, 138);
  193.             this.label4.Name = "label4";
  194.             this.label4.TabIndex = 1;
  195.             this.label4.Text = "page 4";
  196.             // 
  197.             // label5
  198.             // 
  199.             this.label5.Location = new System.Drawing.Point(234, 138);
  200.             this.label5.Name = "label5";
  201.             this.label5.TabIndex = 1;
  202.             this.label5.Text = "page 5";
  203.             // 
  204.             // WizardTest
  205.             // 
  206.             this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
  207.             this.ClientSize = new System.Drawing.Size(576, 422);
  208.             this.Name = "WizardTest";
  209.             this.WizardPages.ResumeLayout(false);
  210.             this.tabPage1.ResumeLayout(false);
  211.             this.tabPage2.ResumeLayout(false);
  212.             this.tabPage3.ResumeLayout(false);
  213.             this.tabPage4.ResumeLayout(false);
  214.             this.tabPage5.ResumeLayout(false);
  215.  
  216.         }
  217.         #endregion
  218.     }
  219. }
  220.  
  221.