namespace YLErp.Forms
{
partial class FormMgrApiTest
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.tbUserPwd = new System.Windows.Forms.TextBox();
this.btnExecute = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.tbUserName = new System.Windows.Forms.TextBox();
this.cmbApiPath = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.label3 = new System.Windows.Forms.Label();
this.tbApiBaseUrl = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(23, 76);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 0;
this.label1.Text = "用户密码";
//
// tbUserPwd
//
this.tbUserPwd.Location = new System.Drawing.Point(83, 72);
this.tbUserPwd.Name = "tbUserPwd";
this.tbUserPwd.Size = new System.Drawing.Size(299, 21);
this.tbUserPwd.TabIndex = 3;
//
// btnExecute
//
this.btnExecute.Location = new System.Drawing.Point(405, 10);
this.btnExecute.Name = "btnExecute";
this.btnExecute.Size = new System.Drawing.Size(92, 23);
this.btnExecute.TabIndex = 8;
this.btnExecute.Text = "执行";
this.btnExecute.UseVisualStyleBackColor = true;
this.btnExecute.Click += new System.EventHandler(this.btnSearch_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(23, 44);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(53, 12);
this.label5.TabIndex = 15;
this.label5.Text = "系统用户";
//
// tbUserName
//
this.tbUserName.Location = new System.Drawing.Point(83, 40);
this.tbUserName.Name = "tbUserName";
this.tbUserName.Size = new System.Drawing.Size(299, 21);
this.tbUserName.TabIndex = 2;
//
// cmbApiPath
//
this.cmbApiPath.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbApiPath.FormattingEnabled = true;
this.cmbApiPath.Items.AddRange(new object[] {
"api/v1/clientPositionList",
"api/v2/clientPositionList",
"api/v1/order/option"});
this.cmbApiPath.Location = new System.Drawing.Point(83, 106);
this.cmbApiPath.Name = "cmbApiPath";
this.cmbApiPath.Size = new System.Drawing.Size(299, 20);
this.cmbApiPath.TabIndex = 4;
this.cmbApiPath.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(29, 109);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 12);
this.label2.TabIndex = 18;
this.label2.Text = "选择API";
//
// propertyGrid1
//
this.propertyGrid1.Location = new System.Drawing.Point(25, 144);
this.propertyGrid1.Name = "propertyGrid1";
this.propertyGrid1.Size = new System.Drawing.Size(357, 479);
this.propertyGrid1.TabIndex = 19;
//
// richTextBox1
//
this.richTextBox1.Location = new System.Drawing.Point(405, 48);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(565, 575);
this.richTextBox1.TabIndex = 20;
this.richTextBox1.Text = "";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(18, 15);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(59, 12);
this.label3.TabIndex = 21;
this.label3.Text = "API基地址";
//
// tbApiBaseUrl
//
this.tbApiBaseUrl.Location = new System.Drawing.Point(83, 12);
this.tbApiBaseUrl.Name = "tbApiBaseUrl";
this.tbApiBaseUrl.Size = new System.Drawing.Size(299, 21);
this.tbApiBaseUrl.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(261, 144);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(101, 23);
this.button1.TabIndex = 22;
this.button1.Text = "导入数据";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// FormMgrApiTest
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(982, 640);
this.Controls.Add(this.button1);
this.Controls.Add(this.label3);
this.Controls.Add(this.tbApiBaseUrl);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.propertyGrid1);
this.Controls.Add(this.label2);
this.Controls.Add(this.cmbApiPath);
this.Controls.Add(this.label5);
this.Controls.Add(this.tbUserName);
this.Controls.Add(this.btnExecute);
this.Controls.Add(this.label1);
this.Controls.Add(this.tbUserPwd);
this.Name = "FormMgrApiTest";
this.Text = "管理端API调试";
this.Load += new System.EventHandler(this.FormMgrApiTest_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox tbUserPwd;
private System.Windows.Forms.Button btnExecute;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox tbUserName;
private System.Windows.Forms.ComboBox cmbApiPath;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.PropertyGrid propertyGrid1;
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox tbApiBaseUrl;
private System.Windows.Forms.Button button1;
}
}