home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / CMCD1004.ISO / Software / Shareware / Programare / netxp / netxp.exe / Samples / CS / Controls / AboutBox.cs next >
Encoding:
Text File  |  2004-03-28  |  997 b   |  49 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 AboutBox : NETXP.Forms.About
  10.     {
  11.         private System.ComponentModel.IContainer components = null;
  12.  
  13.         public AboutBox()
  14.         {
  15.             // This call is required by the Windows Form Designer.
  16.             InitializeComponent();
  17.  
  18.             // TODO: Add any initialization after the InitializeComponent call
  19.         }
  20.  
  21.         /// <summary>
  22.         /// Clean up any resources being used.
  23.         /// </summary>
  24.         protected override void Dispose( bool disposing )
  25.         {
  26.             if( disposing )
  27.             {
  28.                 if (components != null) 
  29.                 {
  30.                     components.Dispose();
  31.                 }
  32.             }
  33.             base.Dispose( disposing );
  34.         }
  35.  
  36.         #region Designer generated code
  37.         /// <summary>
  38.         /// Required method for Designer support - do not modify
  39.         /// the contents of this method with the code editor.
  40.         /// </summary>
  41.         private void InitializeComponent()
  42.         {
  43.             components = new System.ComponentModel.Container();
  44.         }
  45.         #endregion
  46.     }
  47. }
  48.  
  49.