Form1.Designer.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:5k
- namespace UseWebClient
- {
- partial class Form1
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.tbURL = new System.Windows.Forms.TextBox();
- this.btnGet = new System.Windows.Forms.Button();
- this.tbContent = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.tbAddress = new System.Windows.Forms.TextBox();
- this.btnDownload = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(39, 43);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(29, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "URL:";
- //
- // tbURL
- //
- this.tbURL.Location = new System.Drawing.Point(74, 34);
- this.tbURL.Name = "tbURL";
- this.tbURL.Size = new System.Drawing.Size(173, 21);
- this.tbURL.TabIndex = 1;
- //
- // btnGet
- //
- this.btnGet.Location = new System.Drawing.Point(253, 37);
- this.btnGet.Name = "btnGet";
- this.btnGet.Size = new System.Drawing.Size(75, 23);
- this.btnGet.TabIndex = 2;
- this.btnGet.Text = "读取数据";
- this.btnGet.UseVisualStyleBackColor = true;
- this.btnGet.Click += new System.EventHandler(this.btnGet_Click);
- //
- // tbContent
- //
- this.tbContent.Location = new System.Drawing.Point(41, 77);
- this.tbContent.Multiline = true;
- this.tbContent.Name = "tbContent";
- this.tbContent.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
- this.tbContent.Size = new System.Drawing.Size(287, 126);
- this.tbContent.TabIndex = 3;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(39, 232);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(113, 12);
- this.label2.TabIndex = 4;
- this.label2.Text = "目标下载文件地址:";
- //
- // tbAddress
- //
- this.tbAddress.Location = new System.Drawing.Point(175, 223);
- this.tbAddress.Name = "tbAddress";
- this.tbAddress.Size = new System.Drawing.Size(153, 21);
- this.tbAddress.TabIndex = 5;
- //
- // btnDownload
- //
- this.btnDownload.Location = new System.Drawing.Point(41, 265);
- this.btnDownload.Name = "btnDownload";
- this.btnDownload.Size = new System.Drawing.Size(75, 23);
- this.btnDownload.TabIndex = 6;
- this.btnDownload.Text = "下载!";
- this.btnDownload.UseVisualStyleBackColor = true;
- this.btnDownload.Click += new System.EventHandler(this.btnDownload_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(347, 320);
- this.Controls.Add(this.btnDownload);
- this.Controls.Add(this.tbAddress);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.tbContent);
- this.Controls.Add(this.btnGet);
- this.Controls.Add(this.tbURL);
- this.Controls.Add(this.label1);
- this.Name = "Form1";
- this.Text = "WebClient示例";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox tbURL;
- private System.Windows.Forms.Button btnGet;
- private System.Windows.Forms.TextBox tbContent;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox tbAddress;
- private System.Windows.Forms.Button btnDownload;
- }
- }