Form1.Designer.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:5k
- namespace WebRequestAndResponse
- {
- 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.tbPostData = new System.Windows.Forms.TextBox();
- this.btnGet2 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(33, 27);
- 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(68, 17);
- this.tbURL.Name = "tbURL";
- this.tbURL.Size = new System.Drawing.Size(257, 21);
- this.tbURL.TabIndex = 1;
- //
- // btnGet
- //
- this.btnGet.Location = new System.Drawing.Point(331, 15);
- 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(35, 71);
- this.tbContent.Multiline = true;
- this.tbContent.Name = "tbContent";
- this.tbContent.Size = new System.Drawing.Size(371, 136);
- this.tbContent.TabIndex = 3;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(33, 218);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(89, 12);
- this.label2.TabIndex = 4;
- this.label2.Text = "要发送的数据:";
- //
- // tbPostData
- //
- this.tbPostData.Location = new System.Drawing.Point(128, 215);
- this.tbPostData.Name = "tbPostData";
- this.tbPostData.Size = new System.Drawing.Size(170, 21);
- this.tbPostData.TabIndex = 5;
- //
- // btnGet2
- //
- this.btnGet2.Location = new System.Drawing.Point(347, 212);
- this.btnGet2.Name = "btnGet2";
- this.btnGet2.Size = new System.Drawing.Size(75, 23);
- this.btnGet2.TabIndex = 6;
- this.btnGet2.Text = "button1";
- this.btnGet2.UseVisualStyleBackColor = true;
- this.btnGet2.Click += new System.EventHandler(this.btnGet2_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(439, 239);
- this.Controls.Add(this.btnGet2);
- this.Controls.Add(this.tbPostData);
- 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 = "WebRequest和WebResponse示例";
- 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 tbPostData;
- private System.Windows.Forms.Button btnGet2;
- }
- }