Form1.Designer.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:5k
源码类别:

Email服务器

开发平台:

C#

  1. namespace WebRequestAndResponse
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.label1 = new System.Windows.Forms.Label();
  29.             this.tbURL = new System.Windows.Forms.TextBox();
  30.             this.btnGet = new System.Windows.Forms.Button();
  31.             this.tbContent = new System.Windows.Forms.TextBox();
  32.             this.label2 = new System.Windows.Forms.Label();
  33.             this.tbPostData = new System.Windows.Forms.TextBox();
  34.             this.btnGet2 = new System.Windows.Forms.Button();
  35.             this.SuspendLayout();
  36.             // 
  37.             // label1
  38.             // 
  39.             this.label1.AutoSize = true;
  40.             this.label1.Location = new System.Drawing.Point(33, 27);
  41.             this.label1.Name = "label1";
  42.             this.label1.Size = new System.Drawing.Size(29, 12);
  43.             this.label1.TabIndex = 0;
  44.             this.label1.Text = "URL:";
  45.             // 
  46.             // tbURL
  47.             // 
  48.             this.tbURL.Location = new System.Drawing.Point(68, 17);
  49.             this.tbURL.Name = "tbURL";
  50.             this.tbURL.Size = new System.Drawing.Size(257, 21);
  51.             this.tbURL.TabIndex = 1;
  52.             // 
  53.             // btnGet
  54.             // 
  55.             this.btnGet.Location = new System.Drawing.Point(331, 15);
  56.             this.btnGet.Name = "btnGet";
  57.             this.btnGet.Size = new System.Drawing.Size(75, 23);
  58.             this.btnGet.TabIndex = 2;
  59.             this.btnGet.Text = "得到数据";
  60.             this.btnGet.UseVisualStyleBackColor = true;
  61.             this.btnGet.Click += new System.EventHandler(this.btnGet_Click);
  62.             // 
  63.             // tbContent
  64.             // 
  65.             this.tbContent.Location = new System.Drawing.Point(35, 71);
  66.             this.tbContent.Multiline = true;
  67.             this.tbContent.Name = "tbContent";
  68.             this.tbContent.Size = new System.Drawing.Size(371, 136);
  69.             this.tbContent.TabIndex = 3;
  70.             // 
  71.             // label2
  72.             // 
  73.             this.label2.AutoSize = true;
  74.             this.label2.Location = new System.Drawing.Point(33, 218);
  75.             this.label2.Name = "label2";
  76.             this.label2.Size = new System.Drawing.Size(89, 12);
  77.             this.label2.TabIndex = 4;
  78.             this.label2.Text = "要发送的数据:";
  79.             // 
  80.             // tbPostData
  81.             // 
  82.             this.tbPostData.Location = new System.Drawing.Point(128, 215);
  83.             this.tbPostData.Name = "tbPostData";
  84.             this.tbPostData.Size = new System.Drawing.Size(170, 21);
  85.             this.tbPostData.TabIndex = 5;
  86.             // 
  87.             // btnGet2
  88.             // 
  89.             this.btnGet2.Location = new System.Drawing.Point(347, 212);
  90.             this.btnGet2.Name = "btnGet2";
  91.             this.btnGet2.Size = new System.Drawing.Size(75, 23);
  92.             this.btnGet2.TabIndex = 6;
  93.             this.btnGet2.Text = "button1";
  94.             this.btnGet2.UseVisualStyleBackColor = true;
  95.             this.btnGet2.Click += new System.EventHandler(this.btnGet2_Click);
  96.             // 
  97.             // Form1
  98.             // 
  99.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  100.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101.             this.ClientSize = new System.Drawing.Size(439, 239);
  102.             this.Controls.Add(this.btnGet2);
  103.             this.Controls.Add(this.tbPostData);
  104.             this.Controls.Add(this.label2);
  105.             this.Controls.Add(this.tbContent);
  106.             this.Controls.Add(this.btnGet);
  107.             this.Controls.Add(this.tbURL);
  108.             this.Controls.Add(this.label1);
  109.             this.Name = "Form1";
  110.             this.Text = "WebRequest和WebResponse示例";
  111.             this.ResumeLayout(false);
  112.             this.PerformLayout();
  113.         }
  114.         #endregion
  115.         private System.Windows.Forms.Label label1;
  116.         private System.Windows.Forms.TextBox tbURL;
  117.         private System.Windows.Forms.Button btnGet;
  118.         private System.Windows.Forms.TextBox tbContent;
  119.         private System.Windows.Forms.Label label2;
  120.         private System.Windows.Forms.TextBox tbPostData;
  121.         private System.Windows.Forms.Button btnGet2;
  122.     }
  123. }