namespace LB_VisionProcesses.Communicators
{
partial class CommunicatorForm
{
///
/// 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()
{
grpSetting = new GroupBox();
txtIP = new TextBox();
txtPort = new TextBox();
lblPort = new Label();
btnDisconnect = new Button();
btnConnect = new Button();
cmbIP = new ComboBox();
lblIP = new Label();
grpReceive = new GroupBox();
txtReceiveMsg = new TextBox();
txtSendMsg = new TextBox();
btnSend = new Button();
grpTest = new GroupBox();
lblCom = new Label();
ckbRuleCheck = new CheckBox();
cmbCom = new ComboBox();
cmbType = new ComboBox();
lblType = new Label();
btnRun = new Button();
lblMsg = new Label();
txtMsg = new TextBox();
btnRuleSend = new Button();
label6 = new Label();
pnlSetting = new Panel();
grpSetting.SuspendLayout();
grpReceive.SuspendLayout();
grpTest.SuspendLayout();
SuspendLayout();
//
// grpSetting
//
grpSetting.BackColor = Color.FromArgb(32, 41, 50);
grpSetting.Controls.Add(txtIP);
grpSetting.Controls.Add(txtPort);
grpSetting.Controls.Add(lblPort);
grpSetting.Controls.Add(btnDisconnect);
grpSetting.Controls.Add(btnConnect);
grpSetting.Controls.Add(cmbIP);
grpSetting.Controls.Add(lblIP);
grpSetting.ForeColor = Color.White;
grpSetting.Location = new Point(22, 12);
grpSetting.Name = "grpSetting";
grpSetting.Size = new Size(200, 146);
grpSetting.TabIndex = 0;
grpSetting.TabStop = false;
grpSetting.Text = "通讯配置";
//
// txtIP
//
txtIP.Location = new Point(83, 32);
txtIP.Name = "txtIP";
txtIP.Size = new Size(100, 23);
txtIP.TabIndex = 7;
//
// txtPort
//
txtPort.Location = new Point(83, 70);
txtPort.Name = "txtPort";
txtPort.Size = new Size(100, 23);
txtPort.TabIndex = 6;
//
// lblPort
//
lblPort.AutoSize = true;
lblPort.Location = new Point(17, 73);
lblPort.Name = "lblPort";
lblPort.Size = new Size(32, 17);
lblPort.TabIndex = 4;
lblPort.Text = "端口";
//
// btnDisconnect
//
btnDisconnect.ForeColor = Color.Black;
btnDisconnect.Location = new Point(118, 109);
btnDisconnect.Name = "btnDisconnect";
btnDisconnect.Size = new Size(75, 23);
btnDisconnect.TabIndex = 3;
btnDisconnect.Text = "断开";
btnDisconnect.UseVisualStyleBackColor = true;
btnDisconnect.Click += btnDisconnect_Click;
//
// btnConnect
//
btnConnect.ForeColor = Color.Black;
btnConnect.Location = new Point(14, 109);
btnConnect.Name = "btnConnect";
btnConnect.Size = new Size(75, 23);
btnConnect.TabIndex = 2;
btnConnect.Text = "连接";
btnConnect.UseVisualStyleBackColor = true;
btnConnect.Click += btnConnect_Click;
//
// cmbIP
//
cmbIP.FormattingEnabled = true;
cmbIP.Location = new Point(83, 31);
cmbIP.Name = "cmbIP";
cmbIP.Size = new Size(100, 25);
cmbIP.TabIndex = 1;
cmbIP.Click += cmbIP_Click;
cmbIP.MouseClick += cmbIP_MouseClick;
//
// lblIP
//
lblIP.AutoSize = true;
lblIP.Location = new Point(17, 36);
lblIP.Name = "lblIP";
lblIP.Size = new Size(32, 17);
lblIP.TabIndex = 0;
lblIP.Text = "地址";
//
// grpReceive
//
grpReceive.BackColor = Color.FromArgb(32, 41, 50);
grpReceive.Controls.Add(txtReceiveMsg);
grpReceive.ForeColor = Color.White;
grpReceive.Location = new Point(22, 249);
grpReceive.Name = "grpReceive";
grpReceive.Size = new Size(526, 174);
grpReceive.TabIndex = 5;
grpReceive.TabStop = false;
grpReceive.Text = "通讯记录";
//
// txtReceiveMsg
//
txtReceiveMsg.BackColor = Color.FromArgb(32, 41, 50);
txtReceiveMsg.Dock = DockStyle.Fill;
txtReceiveMsg.ForeColor = Color.White;
txtReceiveMsg.Location = new Point(3, 19);
txtReceiveMsg.Multiline = true;
txtReceiveMsg.Name = "txtReceiveMsg";
txtReceiveMsg.ReadOnly = true;
txtReceiveMsg.ScrollBars = ScrollBars.Both;
txtReceiveMsg.Size = new Size(520, 152);
txtReceiveMsg.TabIndex = 0;
//
// txtSendMsg
//
txtSendMsg.Location = new Point(22, 187);
txtSendMsg.Name = "txtSendMsg";
txtSendMsg.Size = new Size(526, 23);
txtSendMsg.TabIndex = 10;
//
// btnSend
//
btnSend.Location = new Point(22, 220);
btnSend.Name = "btnSend";
btnSend.Size = new Size(75, 23);
btnSend.TabIndex = 11;
btnSend.Text = "发送";
btnSend.UseVisualStyleBackColor = true;
btnSend.Click += btnSend_Click;
//
// grpTest
//
grpTest.BackColor = Color.FromArgb(32, 41, 50);
grpTest.Controls.Add(lblCom);
grpTest.Controls.Add(ckbRuleCheck);
grpTest.Controls.Add(cmbCom);
grpTest.Controls.Add(cmbType);
grpTest.Controls.Add(lblType);
grpTest.Controls.Add(btnRun);
grpTest.Controls.Add(lblMsg);
grpTest.Controls.Add(txtMsg);
grpTest.ForeColor = Color.White;
grpTest.Location = new Point(228, 12);
grpTest.Name = "grpTest";
grpTest.Size = new Size(320, 146);
grpTest.TabIndex = 12;
grpTest.TabStop = false;
grpTest.Text = "通讯测试";
//
// lblCom
//
lblCom.AutoSize = true;
lblCom.Location = new Point(165, 40);
lblCom.Name = "lblCom";
lblCom.Size = new Size(32, 17);
lblCom.TabIndex = 9;
lblCom.Text = "通讯";
//
// ckbRuleCheck
//
ckbRuleCheck.AutoSize = true;
ckbRuleCheck.Location = new Point(59, 111);
ckbRuleCheck.Name = "ckbRuleCheck";
ckbRuleCheck.Size = new Size(99, 21);
ckbRuleCheck.TabIndex = 6;
ckbRuleCheck.Text = "是否规则校验";
ckbRuleCheck.UseVisualStyleBackColor = true;
//
// cmbCom
//
cmbCom.FormattingEnabled = true;
cmbCom.Location = new Point(204, 35);
cmbCom.Name = "cmbCom";
cmbCom.Size = new Size(100, 25);
cmbCom.TabIndex = 8;
cmbCom.SelectedIndexChanged += cmbCom_SelectedIndexChanged;
//
// cmbType
//
cmbType.FormattingEnabled = true;
cmbType.Location = new Point(59, 36);
cmbType.Name = "cmbType";
cmbType.Size = new Size(94, 25);
cmbType.TabIndex = 5;
//
// lblType
//
lblType.AutoSize = true;
lblType.Location = new Point(21, 39);
lblType.Name = "lblType";
lblType.Size = new Size(32, 17);
lblType.TabIndex = 4;
lblType.Text = "类型";
//
// btnRun
//
btnRun.ForeColor = Color.Black;
btnRun.Location = new Point(215, 109);
btnRun.Name = "btnRun";
btnRun.Size = new Size(75, 23);
btnRun.TabIndex = 3;
btnRun.Text = "运行测试";
btnRun.UseVisualStyleBackColor = true;
btnRun.Click += btnRun_Click;
//
// lblMsg
//
lblMsg.AutoSize = true;
lblMsg.Location = new Point(20, 78);
lblMsg.Name = "lblMsg";
lblMsg.Size = new Size(32, 17);
lblMsg.TabIndex = 1;
lblMsg.Text = "消息";
//
// txtMsg
//
txtMsg.Location = new Point(59, 76);
txtMsg.Name = "txtMsg";
txtMsg.Size = new Size(245, 23);
txtMsg.TabIndex = 0;
//
// btnRuleSend
//
btnRuleSend.Location = new Point(122, 220);
btnRuleSend.Name = "btnRuleSend";
btnRuleSend.Size = new Size(75, 23);
btnRuleSend.TabIndex = 13;
btnRuleSend.Text = "校验发送";
btnRuleSend.UseVisualStyleBackColor = true;
btnRuleSend.Click += btnRuleSend_Click;
//
// label6
//
label6.AutoSize = true;
label6.ForeColor = Color.White;
label6.Location = new Point(22, 161);
label6.Name = "label6";
label6.Size = new Size(56, 17);
label6.TabIndex = 9;
label6.Text = "发送信息";
//
// pnlSetting
//
pnlSetting.BackColor = Color.FromArgb(32, 41, 50);
pnlSetting.ForeColor = Color.White;
pnlSetting.Location = new Point(554, 12);
pnlSetting.Name = "pnlSetting";
pnlSetting.Size = new Size(387, 408);
pnlSetting.TabIndex = 14;
//
// CommunicatorForm
//
AutoScaleDimensions = new SizeF(96F, 96F);
AutoScaleMode = AutoScaleMode.Dpi;
BackColor = Color.FromArgb(32, 41, 50);
ClientSize = new Size(953, 433);
Controls.Add(pnlSetting);
Controls.Add(btnRuleSend);
Controls.Add(grpTest);
Controls.Add(btnSend);
Controls.Add(txtSendMsg);
Controls.Add(label6);
Controls.Add(grpReceive);
Controls.Add(grpSetting);
ForeColor = Color.Black;
Name = "CommunicatorForm";
Text = "通讯测试";
FormClosing += CommunicatorForm_FormClosing;
FormClosed += CommunicatorForm_FormClosed;
Load += CommunicatorForm_Load;
grpSetting.ResumeLayout(false);
grpSetting.PerformLayout();
grpReceive.ResumeLayout(false);
grpReceive.PerformLayout();
grpTest.ResumeLayout(false);
grpTest.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private GroupBox grpSetting;
private GroupBox grpReceive;
private Button btnDisconnect;
private Button btnConnect;
private ComboBox cmbIP;
private Label lblIP;
private TextBox txtReceiveMsg;
private TextBox txtSendMsg;
private Button btnSend;
private TextBox txtPort;
private Label lblPort;
private TextBox txtIP;
private GroupBox grpTest;
private Button btnRun;
private Label lblMsg;
private TextBox txtMsg;
private Label lblType;
private ComboBox cmbType;
private CheckBox ckbRuleCheck;
private Button btnRuleSend;
private Label lblCom;
private ComboBox cmbCom;
private Label label6;
private Panel pnlSetting;
}
}