238 lines
11 KiB
C#
238 lines
11 KiB
C#
namespace EmoneyInteceptor.Emoney.Controls
|
||
{
|
||
partial class EmoneyTabControl
|
||
{
|
||
/// <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 组件设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要修改
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||
this.txtRequestJson = new System.Windows.Forms.TextBox();
|
||
this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
|
||
this.btnEncode = new System.Windows.Forms.Button();
|
||
this.btnDecode = new System.Windows.Forms.Button();
|
||
this.txtProtobufBody = new System.Windows.Forms.TextBox();
|
||
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.txtProtocolID = new System.Windows.Forms.TextBox();
|
||
this.btnRrquestEncode = new System.Windows.Forms.Button();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.txtAuth = new System.Windows.Forms.TextBox();
|
||
this.panel1 = new System.Windows.Forms.Panel();
|
||
this.tableLayoutPanel1.SuspendLayout();
|
||
this.groupBox1.SuspendLayout();
|
||
this.flowLayoutPanel2.SuspendLayout();
|
||
this.groupBox2.SuspendLayout();
|
||
this.panel1.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// tableLayoutPanel1
|
||
//
|
||
this.tableLayoutPanel1.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.tableLayoutPanel1.ColumnCount = 1;
|
||
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
||
this.tableLayoutPanel1.Controls.Add(this.groupBox1, 0, 0);
|
||
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel2, 0, 1);
|
||
this.tableLayoutPanel1.Controls.Add(this.groupBox2, 0, 2);
|
||
this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 69);
|
||
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
||
this.tableLayoutPanel1.RowCount = 3;
|
||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 75.54112F));
|
||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
|
||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 24.45888F));
|
||
this.tableLayoutPanel1.Size = new System.Drawing.Size(569, 415);
|
||
this.tableLayoutPanel1.TabIndex = 1;
|
||
//
|
||
// groupBox1
|
||
//
|
||
this.groupBox1.Controls.Add(this.txtRequestJson);
|
||
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.groupBox1.Location = new System.Drawing.Point(3, 3);
|
||
this.groupBox1.Name = "groupBox1";
|
||
this.groupBox1.Size = new System.Drawing.Size(563, 281);
|
||
this.groupBox1.TabIndex = 0;
|
||
this.groupBox1.TabStop = false;
|
||
this.groupBox1.Text = "JSON";
|
||
//
|
||
// txtRequestJson
|
||
//
|
||
this.txtRequestJson.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.txtRequestJson.Location = new System.Drawing.Point(3, 19);
|
||
this.txtRequestJson.MaxLength = 2147483647;
|
||
this.txtRequestJson.Multiline = true;
|
||
this.txtRequestJson.Name = "txtRequestJson";
|
||
this.txtRequestJson.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
||
this.txtRequestJson.Size = new System.Drawing.Size(557, 259);
|
||
this.txtRequestJson.TabIndex = 0;
|
||
//
|
||
// flowLayoutPanel2
|
||
//
|
||
this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
|
||
this.flowLayoutPanel2.Controls.Add(this.btnEncode);
|
||
this.flowLayoutPanel2.Controls.Add(this.btnDecode);
|
||
this.flowLayoutPanel2.Location = new System.Drawing.Point(203, 290);
|
||
this.flowLayoutPanel2.Name = "flowLayoutPanel2";
|
||
this.flowLayoutPanel2.Size = new System.Drawing.Size(162, 29);
|
||
this.flowLayoutPanel2.TabIndex = 3;
|
||
//
|
||
// btnEncode
|
||
//
|
||
this.btnEncode.Location = new System.Drawing.Point(3, 3);
|
||
this.btnEncode.Name = "btnEncode";
|
||
this.btnEncode.Size = new System.Drawing.Size(75, 23);
|
||
this.btnEncode.TabIndex = 0;
|
||
this.btnEncode.Text = "编码↓";
|
||
this.btnEncode.UseVisualStyleBackColor = true;
|
||
this.btnEncode.Click += new System.EventHandler(this.btnEncode_Click);
|
||
//
|
||
// btnDecode
|
||
//
|
||
this.btnDecode.Location = new System.Drawing.Point(84, 3);
|
||
this.btnDecode.Name = "btnDecode";
|
||
this.btnDecode.Size = new System.Drawing.Size(75, 23);
|
||
this.btnDecode.TabIndex = 1;
|
||
this.btnDecode.Text = "解码↑";
|
||
this.btnDecode.UseVisualStyleBackColor = true;
|
||
//
|
||
// txtProtobufBody
|
||
//
|
||
this.txtProtobufBody.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.txtProtobufBody.Location = new System.Drawing.Point(3, 19);
|
||
this.txtProtobufBody.MaxLength = 2147483647;
|
||
this.txtProtobufBody.Multiline = true;
|
||
this.txtProtobufBody.Name = "txtProtobufBody";
|
||
this.txtProtobufBody.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
||
this.txtProtobufBody.Size = new System.Drawing.Size(557, 65);
|
||
this.txtProtobufBody.TabIndex = 0;
|
||
//
|
||
// groupBox2
|
||
//
|
||
this.groupBox2.Controls.Add(this.txtProtobufBody);
|
||
this.groupBox2.Location = new System.Drawing.Point(3, 325);
|
||
this.groupBox2.Name = "groupBox2";
|
||
this.groupBox2.Size = new System.Drawing.Size(563, 87);
|
||
this.groupBox2.TabIndex = 2;
|
||
this.groupBox2.TabStop = false;
|
||
this.groupBox2.Text = "Protobuf(Base64)";
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(3, 10);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(74, 17);
|
||
this.label1.TabIndex = 0;
|
||
this.label1.Text = "Protocol ID";
|
||
//
|
||
// txtProtocolID
|
||
//
|
||
this.txtProtocolID.Location = new System.Drawing.Point(93, 7);
|
||
this.txtProtocolID.Name = "txtProtocolID";
|
||
this.txtProtocolID.Size = new System.Drawing.Size(100, 23);
|
||
this.txtProtocolID.TabIndex = 1;
|
||
//
|
||
// btnRrquestEncode
|
||
//
|
||
this.btnRrquestEncode.Location = new System.Drawing.Point(199, 7);
|
||
this.btnRrquestEncode.Name = "btnRrquestEncode";
|
||
this.btnRrquestEncode.Size = new System.Drawing.Size(75, 23);
|
||
this.btnRrquestEncode.TabIndex = 2;
|
||
this.btnRrquestEncode.Text = "请求";
|
||
this.btnRrquestEncode.UseVisualStyleBackColor = true;
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(3, 39);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(85, 17);
|
||
this.label2.TabIndex = 0;
|
||
this.label2.Text = "Authorization";
|
||
//
|
||
// txtAuth
|
||
//
|
||
this.txtAuth.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||
| System.Windows.Forms.AnchorStyles.Right)));
|
||
this.txtAuth.Location = new System.Drawing.Point(93, 36);
|
||
this.txtAuth.Name = "txtAuth";
|
||
this.txtAuth.Size = new System.Drawing.Size(471, 23);
|
||
this.txtAuth.TabIndex = 1;
|
||
//
|
||
// panel1
|
||
//
|
||
this.panel1.Controls.Add(this.btnRrquestEncode);
|
||
this.panel1.Controls.Add(this.tableLayoutPanel1);
|
||
this.panel1.Controls.Add(this.txtAuth);
|
||
this.panel1.Controls.Add(this.label2);
|
||
this.panel1.Controls.Add(this.txtProtocolID);
|
||
this.panel1.Controls.Add(this.label1);
|
||
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.panel1.Location = new System.Drawing.Point(0, 0);
|
||
this.panel1.Name = "panel1";
|
||
this.panel1.Size = new System.Drawing.Size(578, 484);
|
||
this.panel1.TabIndex = 2;
|
||
//
|
||
// EmoneyTabControl
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.panel1);
|
||
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.Margin = new System.Windows.Forms.Padding(4);
|
||
this.Name = "EmoneyTabControl";
|
||
this.Size = new System.Drawing.Size(578, 484);
|
||
this.tableLayoutPanel1.ResumeLayout(false);
|
||
this.groupBox1.ResumeLayout(false);
|
||
this.groupBox1.PerformLayout();
|
||
this.flowLayoutPanel2.ResumeLayout(false);
|
||
this.groupBox2.ResumeLayout(false);
|
||
this.groupBox2.PerformLayout();
|
||
this.panel1.ResumeLayout(false);
|
||
this.panel1.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
||
private System.Windows.Forms.GroupBox groupBox1;
|
||
private System.Windows.Forms.TextBox txtRequestJson;
|
||
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
|
||
private System.Windows.Forms.Button btnEncode;
|
||
private System.Windows.Forms.Button btnDecode;
|
||
private System.Windows.Forms.GroupBox groupBox2;
|
||
private System.Windows.Forms.TextBox txtProtobufBody;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.TextBox txtProtocolID;
|
||
private System.Windows.Forms.Button btnRrquestEncode;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.TextBox txtAuth;
|
||
private System.Windows.Forms.Panel panel1;
|
||
}
|
||
}
|