Files
VAR.Toolbox/VAR.Toolbox/UI/FrmTestRestService.Designer.cs
2017-12-21 10:33:09 +01:00

191 lines
8.5 KiB
C#

namespace VAR.Toolbox.UI
{
partial class FrmTestRestService
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.txtUrl = new System.Windows.Forms.TextBox();
this.txtUrlApiMethod = new System.Windows.Forms.TextBox();
this.txtParameters = new System.Windows.Forms.TextBox();
this.txtBody = new System.Windows.Forms.TextBox();
this.lblURL = new System.Windows.Forms.Label();
this.lblUrlApiMethod = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnTest = new System.Windows.Forms.Button();
this.txtResult = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// txtUrl
//
this.txtUrl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtUrl.Location = new System.Drawing.Point(123, 12);
this.txtUrl.Name = "txtUrl";
this.txtUrl.Size = new System.Drawing.Size(298, 20);
this.txtUrl.TabIndex = 0;
//
// txtUrlApiMethod
//
this.txtUrlApiMethod.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtUrlApiMethod.Location = new System.Drawing.Point(123, 39);
this.txtUrlApiMethod.Name = "txtUrlApiMethod";
this.txtUrlApiMethod.Size = new System.Drawing.Size(298, 20);
this.txtUrlApiMethod.TabIndex = 1;
//
// txtParameters
//
this.txtParameters.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtParameters.Location = new System.Drawing.Point(123, 66);
this.txtParameters.Multiline = true;
this.txtParameters.Name = "txtParameters";
this.txtParameters.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtParameters.Size = new System.Drawing.Size(298, 50);
this.txtParameters.TabIndex = 2;
//
// txtBody
//
this.txtBody.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtBody.Location = new System.Drawing.Point(123, 122);
this.txtBody.Multiline = true;
this.txtBody.Name = "txtBody";
this.txtBody.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtBody.Size = new System.Drawing.Size(298, 59);
this.txtBody.TabIndex = 3;
//
// lblURL
//
this.lblURL.AutoSize = true;
this.lblURL.Location = new System.Drawing.Point(12, 15);
this.lblURL.Name = "lblURL";
this.lblURL.Size = new System.Drawing.Size(29, 13);
this.lblURL.TabIndex = 4;
this.lblURL.Text = "URL";
//
// lblUrlApiMethod
//
this.lblUrlApiMethod.AutoSize = true;
this.lblUrlApiMethod.Location = new System.Drawing.Point(12, 42);
this.lblUrlApiMethod.Name = "lblUrlApiMethod";
this.lblUrlApiMethod.Size = new System.Drawing.Size(71, 13);
this.lblUrlApiMethod.TabIndex = 5;
this.lblUrlApiMethod.Text = "UrlApiMethod";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 69);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 13);
this.label1.TabIndex = 6;
this.label1.Text = "Parameters";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 125);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(31, 13);
this.label2.TabIndex = 7;
this.label2.Text = "Body";
//
// btnTest
//
this.btnTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnTest.Location = new System.Drawing.Point(346, 187);
this.btnTest.Name = "btnTest";
this.btnTest.Size = new System.Drawing.Size(75, 23);
this.btnTest.TabIndex = 8;
this.btnTest.Text = "Test";
this.btnTest.UseVisualStyleBackColor = true;
this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
//
// txtResult
//
this.txtResult.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtResult.Location = new System.Drawing.Point(12, 216);
this.txtResult.Multiline = true;
this.txtResult.Name = "txtResult";
this.txtResult.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtResult.Size = new System.Drawing.Size(409, 206);
this.txtResult.TabIndex = 9;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 200);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(37, 13);
this.label3.TabIndex = 10;
this.label3.Text = "Result";
//
// FrmTestRestService
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(433, 434);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtResult);
this.Controls.Add(this.btnTest);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.lblUrlApiMethod);
this.Controls.Add(this.lblURL);
this.Controls.Add(this.txtBody);
this.Controls.Add(this.txtParameters);
this.Controls.Add(this.txtUrlApiMethod);
this.Controls.Add(this.txtUrl);
this.Name = "FrmTestRestService";
this.Text = "TestRestService";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtUrl;
private System.Windows.Forms.TextBox txtUrlApiMethod;
private System.Windows.Forms.TextBox txtParameters;
private System.Windows.Forms.TextBox txtBody;
private System.Windows.Forms.Label lblURL;
private System.Windows.Forms.Label lblUrlApiMethod;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnTest;
private System.Windows.Forms.TextBox txtResult;
private System.Windows.Forms.Label label3;
}
}