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

Email服务器

开发平台:

C#

  1. namespace UseWebClient
  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.tbAddress = new System.Windows.Forms.TextBox();
  34.             this.btnDownload = 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(39, 43);
  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(74, 34);
  49.             this.tbURL.Name = "tbURL";
  50.             this.tbURL.Size = new System.Drawing.Size(173, 21);
  51.             this.tbURL.TabIndex = 1;
  52.             // 
  53.             // btnGet
  54.             // 
  55.             this.btnGet.Location = new System.Drawing.Point(253, 37);
  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(41, 77);
  66.             this.tbContent.Multiline = true;
  67.             this.tbContent.Name = "tbContent";
  68.             this.tbContent.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  69.             this.tbContent.Size = new System.Drawing.Size(287, 126);
  70.             this.tbContent.TabIndex = 3;
  71.             // 
  72.             // label2
  73.             // 
  74.             this.label2.AutoSize = true;
  75.             this.label2.Location = new System.Drawing.Point(39, 232);
  76.             this.label2.Name = "label2";
  77.             this.label2.Size = new System.Drawing.Size(113, 12);
  78.             this.label2.TabIndex = 4;
  79.             this.label2.Text = "目标下载文件地址:";
  80.             // 
  81.             // tbAddress
  82.             // 
  83.             this.tbAddress.Location = new System.Drawing.Point(175, 223);
  84.             this.tbAddress.Name = "tbAddress";
  85.             this.tbAddress.Size = new System.Drawing.Size(153, 21);
  86.             this.tbAddress.TabIndex = 5;
  87.             // 
  88.             // btnDownload
  89.             // 
  90.             this.btnDownload.Location = new System.Drawing.Point(41, 265);
  91.             this.btnDownload.Name = "btnDownload";
  92.             this.btnDownload.Size = new System.Drawing.Size(75, 23);
  93.             this.btnDownload.TabIndex = 6;
  94.             this.btnDownload.Text = "下载!";
  95.             this.btnDownload.UseVisualStyleBackColor = true;
  96.             this.btnDownload.Click += new System.EventHandler(this.btnDownload_Click);
  97.             // 
  98.             // Form1
  99.             // 
  100.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  101.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  102.             this.ClientSize = new System.Drawing.Size(347, 320);
  103.             this.Controls.Add(this.btnDownload);
  104.             this.Controls.Add(this.tbAddress);
  105.             this.Controls.Add(this.label2);
  106.             this.Controls.Add(this.tbContent);
  107.             this.Controls.Add(this.btnGet);
  108.             this.Controls.Add(this.tbURL);
  109.             this.Controls.Add(this.label1);
  110.             this.Name = "Form1";
  111.             this.Text = "WebClient示例";
  112.             this.ResumeLayout(false);
  113.             this.PerformLayout();
  114.         }
  115.         #endregion
  116.         private System.Windows.Forms.Label label1;
  117.         private System.Windows.Forms.TextBox tbURL;
  118.         private System.Windows.Forms.Button btnGet;
  119.         private System.Windows.Forms.TextBox tbContent;
  120.         private System.Windows.Forms.Label label2;
  121.         private System.Windows.Forms.TextBox tbAddress;
  122.         private System.Windows.Forms.Button btnDownload;
  123.     }
  124. }