namespace Tester
{
partial class RestPanel
{
///
/// 必要なデザイナー変数です。
///
private System.ComponentModel.IContainer components = null;
///
/// 使用中のリソースをすべてクリーンアップします。
///
/// マネージ リソースが破棄される場合 true、破棄されない場合は false です。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region コンポーネント デザイナーで生成されたコード
///
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
///
private void InitializeComponent()
{
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.rbFile = new System.Windows.Forms.RadioButton();
this.rbString = new System.Windows.Forms.RadioButton();
this.txtFilePath = new System.Windows.Forms.TextBox();
this.txtStr = new System.Windows.Forms.TextBox();
this.txtContentType = new System.Windows.Forms.TextBox();
this.txtAddPath = new System.Windows.Forms.TextBox();
this.cmbMethod = new System.Windows.Forms.ComboBox();
this.txtQuery = new System.Windows.Forms.TextBox();
this.rbNone = new System.Windows.Forms.RadioButton();
this.btnFile = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 6);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 12);
this.label2.TabIndex = 1;
this.label2.Text = "Method";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(82, 12);
this.label1.TabIndex = 2;
this.label1.Text = "Additional path";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 57);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(35, 12);
this.label3.TabIndex = 3;
this.label3.Text = "Query";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(3, 82);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(76, 12);
this.label4.TabIndex = 4;
this.label4.Text = "Content-Type";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(3, 106);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(31, 12);
this.label5.TabIndex = 5;
this.label5.Text = "Body";
//
// rbFile
//
this.rbFile.AutoSize = true;
this.rbFile.Location = new System.Drawing.Point(91, 126);
this.rbFile.Name = "rbFile";
this.rbFile.Size = new System.Drawing.Size(42, 16);
this.rbFile.TabIndex = 5;
this.rbFile.Text = "File";
this.rbFile.UseVisualStyleBackColor = true;
this.rbFile.CheckedChanged += new System.EventHandler(this.rbFile_CheckedChanged);
//
// rbString
//
this.rbString.AutoSize = true;
this.rbString.Location = new System.Drawing.Point(91, 150);
this.rbString.Name = "rbString";
this.rbString.Size = new System.Drawing.Size(53, 16);
this.rbString.TabIndex = 6;
this.rbString.Text = "String";
this.rbString.UseVisualStyleBackColor = true;
this.rbString.CheckedChanged += new System.EventHandler(this.rbString_CheckedChanged);
//
// txtFilePath
//
this.txtFilePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtFilePath.Location = new System.Drawing.Point(146, 125);
this.txtFilePath.Name = "txtFilePath";
this.txtFilePath.Size = new System.Drawing.Size(224, 19);
this.txtFilePath.TabIndex = 7;
//
// txtStr
//
this.txtStr.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.txtStr.Location = new System.Drawing.Point(146, 150);
this.txtStr.Multiline = true;
this.txtStr.Name = "txtStr";
this.txtStr.Size = new System.Drawing.Size(251, 97);
this.txtStr.TabIndex = 8;
//
// txtContentType
//
this.txtContentType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtContentType.Location = new System.Drawing.Point(91, 79);
this.txtContentType.Name = "txtContentType";
this.txtContentType.Size = new System.Drawing.Size(306, 19);
this.txtContentType.TabIndex = 3;
//
// txtAddPath
//
this.txtAddPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtAddPath.Location = new System.Drawing.Point(91, 29);
this.txtAddPath.Name = "txtAddPath";
this.txtAddPath.Size = new System.Drawing.Size(306, 19);
this.txtAddPath.TabIndex = 1;
//
// cmbMethod
//
this.cmbMethod.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cmbMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbMethod.FormattingEnabled = true;
this.cmbMethod.Items.AddRange(new object[] {
"PUT",
"GET",
"DELETE",
"POST"});
this.cmbMethod.Location = new System.Drawing.Point(91, 3);
this.cmbMethod.Name = "cmbMethod";
this.cmbMethod.Size = new System.Drawing.Size(306, 20);
this.cmbMethod.TabIndex = 0;
//
// txtQuery
//
this.txtQuery.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtQuery.Location = new System.Drawing.Point(91, 54);
this.txtQuery.Name = "txtQuery";
this.txtQuery.Size = new System.Drawing.Size(306, 19);
this.txtQuery.TabIndex = 2;
//
// rbNone
//
this.rbNone.AutoSize = true;
this.rbNone.Checked = true;
this.rbNone.Location = new System.Drawing.Point(91, 104);
this.rbNone.Name = "rbNone";
this.rbNone.Size = new System.Drawing.Size(49, 16);
this.rbNone.TabIndex = 4;
this.rbNone.TabStop = true;
this.rbNone.Text = "None";
this.rbNone.UseVisualStyleBackColor = true;
this.rbNone.CheckedChanged += new System.EventHandler(this.rbNone_CheckedChanged);
//
// btnFile
//
this.btnFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnFile.Location = new System.Drawing.Point(374, 123);
this.btnFile.Name = "btnFile";
this.btnFile.Size = new System.Drawing.Size(23, 23);
this.btnFile.TabIndex = 9;
this.btnFile.Text = "...";
this.btnFile.UseVisualStyleBackColor = true;
this.btnFile.Click += new System.EventHandler(this.btnFile_Click);
//
// RestPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.btnFile);
this.Controls.Add(this.rbNone);
this.Controls.Add(this.txtQuery);
this.Controls.Add(this.cmbMethod);
this.Controls.Add(this.txtAddPath);
this.Controls.Add(this.txtContentType);
this.Controls.Add(this.txtStr);
this.Controls.Add(this.txtFilePath);
this.Controls.Add(this.rbString);
this.Controls.Add(this.rbFile);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label1);
this.Controls.Add(this.label2);
this.Name = "RestPanel";
this.Size = new System.Drawing.Size(400, 250);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.RadioButton rbFile;
private System.Windows.Forms.RadioButton rbString;
private System.Windows.Forms.TextBox txtFilePath;
private System.Windows.Forms.TextBox txtStr;
private System.Windows.Forms.TextBox txtContentType;
private System.Windows.Forms.TextBox txtAddPath;
private System.Windows.Forms.ComboBox cmbMethod;
private System.Windows.Forms.TextBox txtQuery;
private System.Windows.Forms.RadioButton rbNone;
private System.Windows.Forms.Button btnFile;
}
}