Confirmation.cs
上传用户:hkhxjs
上传日期:2008-11-25
资源大小:155k
文件大小:1k
源码类别:

Internet/网络编程

开发平台:

C#

  1. namespace Listener
  2. {
  3.     using System;
  4.     using System.Drawing;
  5.     using System.Collections;
  6.     using System.ComponentModel;
  7.     using System.WinForms;
  8.     /// <summary>
  9.     ///    Summary description for Confirmation.
  10.     /// </summary>
  11.     public class Confirmation : System.WinForms.Form
  12.     {
  13.         /// <summary>
  14.         ///    Required designer variable.
  15.         /// </summary>
  16.         private System.ComponentModel.Container components;
  17.         public Confirmation()
  18.         {
  19.             //
  20.             // Required for Windows Form Designer support
  21.             //
  22.             InitializeComponent();
  23.             //
  24.             // TODO: Add any constructor code after InitializeComponent call
  25.             //
  26.         }
  27.         /// <summary>
  28.         ///    Clean up any resources being used.
  29.         /// </summary>
  30.         public override void Dispose()
  31.         {
  32.             base.Dispose();
  33.             components.Dispose();
  34.         }
  35.         /// <summary>
  36.         ///    Required method for Designer support - do not modify
  37.         ///    the contents of this method with the code editor.
  38.         /// </summary>
  39.         private void InitializeComponent()
  40.         {
  41.             this.components = new System.ComponentModel.Container();
  42.             this.Size = new System.Drawing.Size(300,300);
  43.             this.Text = "Confirmation";
  44.         }
  45.     }
  46. }