Confirmation.cs
资源名称:P2P c#.rar [点击查看]
上传用户:hkhxjs
上传日期:2008-11-25
资源大小:155k
文件大小:1k
源码类别:
Internet/网络编程
开发平台:
C#
- namespace Listener
- {
- using System;
- using System.Drawing;
- using System.Collections;
- using System.ComponentModel;
- using System.WinForms;
- /// <summary>
- /// Summary description for Confirmation.
- /// </summary>
- public class Confirmation : System.WinForms.Form
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.Container components;
- public Confirmation()
- {
- //
- // Required for Windows Form Designer support
- //
- InitializeComponent();
- //
- // TODO: Add any constructor code after InitializeComponent call
- //
- }
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- public override void Dispose()
- {
- base.Dispose();
- components.Dispose();
- }
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.Size = new System.Drawing.Size(300,300);
- this.Text = "Confirmation";
- }
- }
- }