Files
ENIG/Cs_HMI/TestProject/Test_ACS/MainForm.Designer.cs
2025-11-14 15:03:51 +09:00

1013 lines
49 KiB
C#

namespace Test_ACS
{
partial class MainForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.grpConnection = new System.Windows.Forms.GroupBox();
this.btnRefresh = new System.Windows.Forms.Button();
this.btnConnect = new System.Windows.Forms.Button();
this.txtBaudRate = new System.Windows.Forms.TextBox();
this.cmbPort = new System.Windows.Forms.ComboBox();
this.lblBaudRate = new System.Windows.Forms.Label();
this.lblPort = new System.Windows.Forms.Label();
this.grpAGV = new System.Windows.Forms.GroupBox();
this.rbAGV2 = new System.Windows.Forms.RadioButton();
this.rbAGV1 = new System.Windows.Forms.RadioButton();
this.grpCommands = new System.Windows.Forms.GroupBox();
this.grpLift = new System.Windows.Forms.GroupBox();
this.btnLiftStop = new System.Windows.Forms.Button();
this.btnLiftDown = new System.Windows.Forms.Button();
this.btnLiftUp = new System.Windows.Forms.Button();
this.grpManual = new System.Windows.Forms.GroupBox();
this.btMMove = new System.Windows.Forms.Button();
this.numRuntime = new System.Windows.Forms.NumericUpDown();
this.lblRuntime = new System.Windows.Forms.Label();
this.cmbSpeed = new System.Windows.Forms.ComboBox();
this.lblSpeed = new System.Windows.Forms.Label();
this.cmbDirection = new System.Windows.Forms.ComboBox();
this.chkMarkStop = new System.Windows.Forms.CheckBox();
this.btnMarkStop = new System.Windows.Forms.Button();
this.btnReset = new System.Windows.Forms.Button();
this.btnStop = new System.Windows.Forms.Button();
this.btnGotoAlias = new System.Windows.Forms.Button();
this.btnGoto = new System.Windows.Forms.Button();
this.btnSetCurrent = new System.Windows.Forms.Button();
this.txtAlias = new System.Windows.Forms.TextBox();
this.lblAlias = new System.Windows.Forms.Label();
this.txtRFID = new System.Windows.Forms.NumericUpDown();
this.lblRFID = new System.Windows.Forms.Label();
this.lblDirection = new System.Windows.Forms.Label();
this.grpLogs = new System.Windows.Forms.GroupBox();
this.tabLogs = new System.Windows.Forms.TabControl();
this.tabRX = new System.Windows.Forms.TabPage();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.txtRxLog = new System.Windows.Forms.TextBox();
this.txtTxLog = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.tabInfo = new System.Windows.Forms.TabPage();
this.txtInfoLog = new System.Windows.Forms.TextBox();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.grpAGVStatus = new System.Windows.Forms.GroupBox();
this.lblLastTagValue = new System.Windows.Forms.Label();
this.lblLastTag = new System.Windows.Forms.Label();
this.lblLiftStValue = new System.Windows.Forms.Label();
this.lblLiftSt = new System.Windows.Forms.Label();
this.lblCartStValue = new System.Windows.Forms.Label();
this.lblCartSt = new System.Windows.Forms.Label();
this.lblChargeStValue = new System.Windows.Forms.Label();
this.lblChargeSt = new System.Windows.Forms.Label();
this.lblInpositionValue = new System.Windows.Forms.Label();
this.lblInposition = new System.Windows.Forms.Label();
this.lblDirectionValue = new System.Windows.Forms.Label();
this.lblRunStValue = new System.Windows.Forms.Label();
this.lblRunSt = new System.Windows.Forms.Label();
this.lblModeValue = new System.Windows.Forms.Label();
this.lblMode = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btAMove = new System.Windows.Forms.Button();
this.cmbAutoSpeed = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.cmbMotDirection = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.cmbMagDirection = new System.Windows.Forms.ComboBox();
this.grpConnection.SuspendLayout();
this.grpAGV.SuspendLayout();
this.grpCommands.SuspendLayout();
this.grpLift.SuspendLayout();
this.grpManual.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numRuntime)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtRFID)).BeginInit();
this.grpLogs.SuspendLayout();
this.tabLogs.SuspendLayout();
this.tabRX.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tabInfo.SuspendLayout();
this.tabPage1.SuspendLayout();
this.grpAGVStatus.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// grpConnection
//
this.grpConnection.Controls.Add(this.btnRefresh);
this.grpConnection.Controls.Add(this.btnConnect);
this.grpConnection.Controls.Add(this.txtBaudRate);
this.grpConnection.Controls.Add(this.cmbPort);
this.grpConnection.Controls.Add(this.lblBaudRate);
this.grpConnection.Controls.Add(this.lblPort);
this.grpConnection.Location = new System.Drawing.Point(12, 12);
this.grpConnection.Name = "grpConnection";
this.grpConnection.Size = new System.Drawing.Size(260, 120);
this.grpConnection.TabIndex = 0;
this.grpConnection.TabStop = false;
this.grpConnection.Text = "연결 설정";
//
// btnRefresh
//
this.btnRefresh.Location = new System.Drawing.Point(179, 22);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(70, 23);
this.btnRefresh.TabIndex = 5;
this.btnRefresh.Text = "새로고침";
this.btnRefresh.UseVisualStyleBackColor = true;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
//
// btnConnect
//
this.btnConnect.Location = new System.Drawing.Point(15, 81);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(234, 30);
this.btnConnect.TabIndex = 4;
this.btnConnect.Text = "연결";
this.btnConnect.UseVisualStyleBackColor = true;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// txtBaudRate
//
this.txtBaudRate.Location = new System.Drawing.Point(85, 53);
this.txtBaudRate.Name = "txtBaudRate";
this.txtBaudRate.Size = new System.Drawing.Size(164, 21);
this.txtBaudRate.TabIndex = 3;
this.txtBaudRate.Text = "9600";
this.txtBaudRate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtBaudRate.TextChanged += new System.EventHandler(this.txtBaudRate_TextChanged);
//
// cmbPort
//
this.cmbPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbPort.FormattingEnabled = true;
this.cmbPort.Location = new System.Drawing.Point(85, 23);
this.cmbPort.Name = "cmbPort";
this.cmbPort.Size = new System.Drawing.Size(88, 20);
this.cmbPort.TabIndex = 2;
this.cmbPort.SelectedIndexChanged += new System.EventHandler(this.cmbPort_SelectedIndexChanged);
//
// lblBaudRate
//
this.lblBaudRate.AutoSize = true;
this.lblBaudRate.Location = new System.Drawing.Point(15, 56);
this.lblBaudRate.Name = "lblBaudRate";
this.lblBaudRate.Size = new System.Drawing.Size(57, 12);
this.lblBaudRate.TabIndex = 1;
this.lblBaudRate.Text = "보레이트:";
//
// lblPort
//
this.lblPort.AutoSize = true;
this.lblPort.Location = new System.Drawing.Point(15, 26);
this.lblPort.Name = "lblPort";
this.lblPort.Size = new System.Drawing.Size(66, 12);
this.lblPort.TabIndex = 0;
this.lblPort.Text = "COM 포트:";
//
// grpAGV
//
this.grpAGV.Controls.Add(this.rbAGV2);
this.grpAGV.Controls.Add(this.rbAGV1);
this.grpAGV.Location = new System.Drawing.Point(278, 12);
this.grpAGV.Name = "grpAGV";
this.grpAGV.Size = new System.Drawing.Size(200, 120);
this.grpAGV.TabIndex = 1;
this.grpAGV.TabStop = false;
this.grpAGV.Text = "AGV 선택";
//
// rbAGV2
//
this.rbAGV2.AutoSize = true;
this.rbAGV2.Location = new System.Drawing.Point(20, 60);
this.rbAGV2.Name = "rbAGV2";
this.rbAGV2.Size = new System.Drawing.Size(95, 16);
this.rbAGV2.TabIndex = 1;
this.rbAGV2.Text = "AGV2 (ID:12)";
this.rbAGV2.UseVisualStyleBackColor = true;
this.rbAGV2.CheckedChanged += new System.EventHandler(this.rbAGV2_CheckedChanged);
//
// rbAGV1
//
this.rbAGV1.AutoSize = true;
this.rbAGV1.Checked = true;
this.rbAGV1.Location = new System.Drawing.Point(20, 30);
this.rbAGV1.Name = "rbAGV1";
this.rbAGV1.Size = new System.Drawing.Size(95, 16);
this.rbAGV1.TabIndex = 0;
this.rbAGV1.TabStop = true;
this.rbAGV1.Text = "AGV1 (ID:11)";
this.rbAGV1.UseVisualStyleBackColor = true;
this.rbAGV1.CheckedChanged += new System.EventHandler(this.rbAGV1_CheckedChanged);
//
// grpCommands
//
this.grpCommands.Controls.Add(this.groupBox1);
this.grpCommands.Controls.Add(this.grpManual);
this.grpCommands.Controls.Add(this.chkMarkStop);
this.grpCommands.Controls.Add(this.btnMarkStop);
this.grpCommands.Controls.Add(this.btnReset);
this.grpCommands.Controls.Add(this.btnStop);
this.grpCommands.Controls.Add(this.btnGotoAlias);
this.grpCommands.Controls.Add(this.btnGoto);
this.grpCommands.Controls.Add(this.btnSetCurrent);
this.grpCommands.Controls.Add(this.txtAlias);
this.grpCommands.Controls.Add(this.lblAlias);
this.grpCommands.Controls.Add(this.txtRFID);
this.grpCommands.Controls.Add(this.lblRFID);
this.grpCommands.Location = new System.Drawing.Point(12, 138);
this.grpCommands.Name = "grpCommands";
this.grpCommands.Size = new System.Drawing.Size(466, 312);
this.grpCommands.TabIndex = 2;
this.grpCommands.TabStop = false;
this.grpCommands.Text = "ACS 명령";
//
// grpLift
//
this.grpLift.Controls.Add(this.btnLiftStop);
this.grpLift.Controls.Add(this.btnLiftDown);
this.grpLift.Controls.Add(this.btnLiftUp);
this.grpLift.Location = new System.Drawing.Point(298, 456);
this.grpLift.Name = "grpLift";
this.grpLift.Size = new System.Drawing.Size(180, 120);
this.grpLift.TabIndex = 9;
this.grpLift.TabStop = false;
this.grpLift.Text = "리프트 제어";
//
// btnLiftStop
//
this.btnLiftStop.Location = new System.Drawing.Point(121, 20);
this.btnLiftStop.Name = "btnLiftStop";
this.btnLiftStop.Size = new System.Drawing.Size(48, 90);
this.btnLiftStop.TabIndex = 2;
this.btnLiftStop.Text = "정지";
this.btnLiftStop.UseVisualStyleBackColor = true;
this.btnLiftStop.Click += new System.EventHandler(this.btnLiftStop_Click);
//
// btnLiftDown
//
this.btnLiftDown.Location = new System.Drawing.Point(65, 20);
this.btnLiftDown.Name = "btnLiftDown";
this.btnLiftDown.Size = new System.Drawing.Size(48, 90);
this.btnLiftDown.TabIndex = 1;
this.btnLiftDown.Text = "하강";
this.btnLiftDown.UseVisualStyleBackColor = true;
this.btnLiftDown.Click += new System.EventHandler(this.btnLiftDown_Click);
//
// btnLiftUp
//
this.btnLiftUp.Location = new System.Drawing.Point(9, 20);
this.btnLiftUp.Name = "btnLiftUp";
this.btnLiftUp.Size = new System.Drawing.Size(48, 90);
this.btnLiftUp.TabIndex = 0;
this.btnLiftUp.Text = "상승";
this.btnLiftUp.UseVisualStyleBackColor = true;
this.btnLiftUp.Click += new System.EventHandler(this.btnLiftUp_Click);
//
// grpManual
//
this.grpManual.Controls.Add(this.btMMove);
this.grpManual.Controls.Add(this.numRuntime);
this.grpManual.Controls.Add(this.lblRuntime);
this.grpManual.Controls.Add(this.cmbSpeed);
this.grpManual.Controls.Add(this.lblSpeed);
this.grpManual.Controls.Add(this.cmbDirection);
this.grpManual.Location = new System.Drawing.Point(15, 202);
this.grpManual.Name = "grpManual";
this.grpManual.Size = new System.Drawing.Size(215, 100);
this.grpManual.TabIndex = 8;
this.grpManual.TabStop = false;
this.grpManual.Text = "수동 이동";
//
// btMMove
//
this.btMMove.Location = new System.Drawing.Point(136, 16);
this.btMMove.Name = "btMMove";
this.btMMove.Size = new System.Drawing.Size(73, 74);
this.btMMove.TabIndex = 6;
this.btMMove.Text = "실행";
this.btMMove.UseVisualStyleBackColor = true;
this.btMMove.Click += new System.EventHandler(this.btnManual_Click);
//
// numRuntime
//
this.numRuntime.Location = new System.Drawing.Point(60, 66);
this.numRuntime.Maximum = new decimal(new int[] {
255,
0,
0,
0});
this.numRuntime.Name = "numRuntime";
this.numRuntime.Size = new System.Drawing.Size(70, 21);
this.numRuntime.TabIndex = 5;
this.numRuntime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.numRuntime.Value = new decimal(new int[] {
5,
0,
0,
0});
//
// lblRuntime
//
this.lblRuntime.AutoSize = true;
this.lblRuntime.Location = new System.Drawing.Point(3, 70);
this.lblRuntime.Name = "lblRuntime";
this.lblRuntime.Size = new System.Drawing.Size(51, 12);
this.lblRuntime.TabIndex = 4;
this.lblRuntime.Text = "시간(초)";
//
// cmbSpeed
//
this.cmbSpeed.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbSpeed.FormattingEnabled = true;
this.cmbSpeed.Items.AddRange(new object[] {
"느림",
"보통",
"빠름"});
this.cmbSpeed.Location = new System.Drawing.Point(60, 41);
this.cmbSpeed.Name = "cmbSpeed";
this.cmbSpeed.Size = new System.Drawing.Size(70, 20);
this.cmbSpeed.TabIndex = 3;
//
// lblSpeed
//
this.lblSpeed.AutoSize = true;
this.lblSpeed.Location = new System.Drawing.Point(14, 45);
this.lblSpeed.Name = "lblSpeed";
this.lblSpeed.Size = new System.Drawing.Size(29, 12);
this.lblSpeed.TabIndex = 2;
this.lblSpeed.Text = "속도";
//
// cmbDirection
//
this.cmbDirection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbDirection.FormattingEnabled = true;
this.cmbDirection.Items.AddRange(new object[] {
"후진",
"전진",
"좌",
"우"});
this.cmbDirection.Location = new System.Drawing.Point(60, 16);
this.cmbDirection.Name = "cmbDirection";
this.cmbDirection.Size = new System.Drawing.Size(70, 20);
this.cmbDirection.TabIndex = 1;
//
// chkMarkStop
//
this.chkMarkStop.AutoSize = true;
this.chkMarkStop.Location = new System.Drawing.Point(240, 174);
this.chkMarkStop.Name = "chkMarkStop";
this.chkMarkStop.Size = new System.Drawing.Size(76, 16);
this.chkMarkStop.TabIndex = 7;
this.chkMarkStop.Text = "정지 설정";
this.chkMarkStop.UseVisualStyleBackColor = true;
//
// btnMarkStop
//
this.btnMarkStop.Location = new System.Drawing.Point(15, 167);
this.btnMarkStop.Name = "btnMarkStop";
this.btnMarkStop.Size = new System.Drawing.Size(215, 30);
this.btnMarkStop.TabIndex = 6;
this.btnMarkStop.Text = "마크센서 정지";
this.btnMarkStop.UseVisualStyleBackColor = true;
this.btnMarkStop.Click += new System.EventHandler(this.btnMarkStop_Click);
//
// btnReset
//
this.btnReset.Location = new System.Drawing.Point(240, 132);
this.btnReset.Name = "btnReset";
this.btnReset.Size = new System.Drawing.Size(210, 30);
this.btnReset.TabIndex = 5;
this.btnReset.Text = "에러 리셋";
this.btnReset.UseVisualStyleBackColor = true;
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
//
// btnStop
//
this.btnStop.Location = new System.Drawing.Point(15, 132);
this.btnStop.Name = "btnStop";
this.btnStop.Size = new System.Drawing.Size(215, 30);
this.btnStop.TabIndex = 4;
this.btnStop.Text = "정지";
this.btnStop.UseVisualStyleBackColor = true;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// btnGotoAlias
//
this.btnGotoAlias.Location = new System.Drawing.Point(286, 94);
this.btnGotoAlias.Name = "btnGotoAlias";
this.btnGotoAlias.Size = new System.Drawing.Size(174, 30);
this.btnGotoAlias.TabIndex = 11;
this.btnGotoAlias.Text = "별칭 이동 (GotoAlias)";
this.btnGotoAlias.UseVisualStyleBackColor = true;
this.btnGotoAlias.Click += new System.EventHandler(this.btnGotoAlias_Click);
//
// btnGoto
//
this.btnGoto.Location = new System.Drawing.Point(286, 23);
this.btnGoto.Name = "btnGoto";
this.btnGoto.Size = new System.Drawing.Size(174, 30);
this.btnGoto.TabIndex = 3;
this.btnGoto.Text = "RFID 이동 (Goto)";
this.btnGoto.UseVisualStyleBackColor = true;
this.btnGoto.Click += new System.EventHandler(this.btnGoto_Click);
//
// btnSetCurrent
//
this.btnSetCurrent.Location = new System.Drawing.Point(85, 57);
this.btnSetCurrent.Name = "btnSetCurrent";
this.btnSetCurrent.Size = new System.Drawing.Size(195, 30);
this.btnSetCurrent.TabIndex = 2;
this.btnSetCurrent.Text = "현재 위치 설정 (SetCurrent)";
this.btnSetCurrent.UseVisualStyleBackColor = true;
this.btnSetCurrent.Click += new System.EventHandler(this.btnSetCurrent_Click);
//
// txtAlias
//
this.txtAlias.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtAlias.Location = new System.Drawing.Point(85, 96);
this.txtAlias.Name = "txtAlias";
this.txtAlias.Size = new System.Drawing.Size(195, 26);
this.txtAlias.TabIndex = 10;
this.txtAlias.Text = "CHARGER1";
this.txtAlias.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtAlias.TextChanged += new System.EventHandler(this.txtAlias_TextChanged);
//
// lblAlias
//
this.lblAlias.AutoSize = true;
this.lblAlias.Location = new System.Drawing.Point(15, 103);
this.lblAlias.Name = "lblAlias";
this.lblAlias.Size = new System.Drawing.Size(71, 12);
this.lblAlias.TabIndex = 9;
this.lblAlias.Text = "별칭(Alias):";
//
// txtRFID
//
this.txtRFID.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtRFID.Location = new System.Drawing.Point(85, 25);
this.txtRFID.Maximum = new decimal(new int[] {
999999,
0,
0,
0});
this.txtRFID.Name = "txtRFID";
this.txtRFID.Size = new System.Drawing.Size(195, 26);
this.txtRFID.TabIndex = 1;
this.txtRFID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtRFID.Value = new decimal(new int[] {
1,
0,
0,
0});
this.txtRFID.TextChanged += new System.EventHandler(this.txtRFID_TextChanged);
//
// lblRFID
//
this.lblRFID.AutoSize = true;
this.lblRFID.Location = new System.Drawing.Point(15, 32);
this.lblRFID.Name = "lblRFID";
this.lblRFID.Size = new System.Drawing.Size(63, 12);
this.lblRFID.TabIndex = 0;
this.lblRFID.Text = "RFID 번호:";
//
// lblDirection
//
this.lblDirection.AutoSize = true;
this.lblDirection.Location = new System.Drawing.Point(10, 48);
this.lblDirection.Name = "lblDirection";
this.lblDirection.Size = new System.Drawing.Size(33, 12);
this.lblDirection.TabIndex = 4;
this.lblDirection.Text = "방향:";
//
// grpLogs
//
this.grpLogs.Controls.Add(this.tabLogs);
this.grpLogs.Location = new System.Drawing.Point(484, 12);
this.grpLogs.Name = "grpLogs";
this.grpLogs.Size = new System.Drawing.Size(520, 564);
this.grpLogs.TabIndex = 3;
this.grpLogs.TabStop = false;
this.grpLogs.Text = "로그";
//
// tabLogs
//
this.tabLogs.Controls.Add(this.tabRX);
this.tabLogs.Controls.Add(this.tabInfo);
this.tabLogs.Controls.Add(this.tabPage1);
this.tabLogs.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabLogs.Location = new System.Drawing.Point(3, 17);
this.tabLogs.Name = "tabLogs";
this.tabLogs.SelectedIndex = 0;
this.tabLogs.Size = new System.Drawing.Size(514, 544);
this.tabLogs.TabIndex = 0;
//
// tabRX
//
this.tabRX.Controls.Add(this.tableLayoutPanel1);
this.tabRX.Location = new System.Drawing.Point(4, 22);
this.tabRX.Name = "tabRX";
this.tabRX.Padding = new System.Windows.Forms.Padding(3);
this.tabRX.Size = new System.Drawing.Size(506, 518);
this.tabRX.TabIndex = 1;
this.tabRX.Text = "패킷";
this.tabRX.UseVisualStyleBackColor = true;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.txtRxLog, 0, 3);
this.tableLayoutPanel1.Controls.Add(this.txtTxLog, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.label2, 0, 2);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 4;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(500, 512);
this.tableLayoutPanel1.TabIndex = 1;
//
// txtRxLog
//
this.txtRxLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtRxLog.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtRxLog.Location = new System.Drawing.Point(3, 279);
this.txtRxLog.Multiline = true;
this.txtRxLog.Name = "txtRxLog";
this.txtRxLog.ReadOnly = true;
this.txtRxLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtRxLog.Size = new System.Drawing.Size(494, 230);
this.txtRxLog.TabIndex = 0;
this.txtRxLog.Text = "1";
//
// txtTxLog
//
this.txtTxLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtTxLog.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtTxLog.Location = new System.Drawing.Point(3, 23);
this.txtTxLog.Multiline = true;
this.txtTxLog.Name = "txtTxLog";
this.txtTxLog.ReadOnly = true;
this.txtTxLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtTxLog.Size = new System.Drawing.Size(494, 230);
this.txtTxLog.TabIndex = 0;
//
// label1
//
this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(494, 20);
this.label1.TabIndex = 1;
this.label1.Text = "Tx";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label2
//
this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
this.label2.Location = new System.Drawing.Point(3, 256);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(494, 20);
this.label2.TabIndex = 1;
this.label2.Text = "Rx";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// tabInfo
//
this.tabInfo.Controls.Add(this.txtInfoLog);
this.tabInfo.Location = new System.Drawing.Point(4, 22);
this.tabInfo.Name = "tabInfo";
this.tabInfo.Size = new System.Drawing.Size(506, 518);
this.tabInfo.TabIndex = 2;
this.tabInfo.Text = "정보";
this.tabInfo.UseVisualStyleBackColor = true;
//
// txtInfoLog
//
this.txtInfoLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtInfoLog.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtInfoLog.Location = new System.Drawing.Point(0, 0);
this.txtInfoLog.Multiline = true;
this.txtInfoLog.Name = "txtInfoLog";
this.txtInfoLog.ReadOnly = true;
this.txtInfoLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtInfoLog.Size = new System.Drawing.Size(506, 518);
this.txtInfoLog.TabIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.richTextBox1);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Size = new System.Drawing.Size(506, 518);
this.tabPage1.TabIndex = 3;
this.tabPage1.Text = "프레임구조";
this.tabPage1.UseVisualStyleBackColor = true;
//
// richTextBox1
//
this.richTextBox1.BackColor = System.Drawing.Color.WhiteSmoke;
this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBox1.Location = new System.Drawing.Point(0, 0);
this.richTextBox1.Margin = new System.Windows.Forms.Padding(10);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(506, 518);
this.richTextBox1.TabIndex = 0;
this.richTextBox1.Text = resources.GetString("richTextBox1.Text");
//
// grpAGVStatus
//
this.grpAGVStatus.Controls.Add(this.lblLastTagValue);
this.grpAGVStatus.Controls.Add(this.lblLastTag);
this.grpAGVStatus.Controls.Add(this.lblLiftStValue);
this.grpAGVStatus.Controls.Add(this.lblLiftSt);
this.grpAGVStatus.Controls.Add(this.lblCartStValue);
this.grpAGVStatus.Controls.Add(this.lblCartSt);
this.grpAGVStatus.Controls.Add(this.lblChargeStValue);
this.grpAGVStatus.Controls.Add(this.lblChargeSt);
this.grpAGVStatus.Controls.Add(this.lblInpositionValue);
this.grpAGVStatus.Controls.Add(this.lblInposition);
this.grpAGVStatus.Controls.Add(this.lblDirectionValue);
this.grpAGVStatus.Controls.Add(this.lblDirection);
this.grpAGVStatus.Controls.Add(this.lblRunStValue);
this.grpAGVStatus.Controls.Add(this.lblRunSt);
this.grpAGVStatus.Controls.Add(this.lblModeValue);
this.grpAGVStatus.Controls.Add(this.lblMode);
this.grpAGVStatus.Location = new System.Drawing.Point(12, 456);
this.grpAGVStatus.Name = "grpAGVStatus";
this.grpAGVStatus.Size = new System.Drawing.Size(280, 120);
this.grpAGVStatus.TabIndex = 4;
this.grpAGVStatus.TabStop = false;
this.grpAGVStatus.Text = "AGV 상태";
//
// lblLastTagValue
//
this.lblLastTagValue.AutoSize = true;
this.lblLastTagValue.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold);
this.lblLastTagValue.Location = new System.Drawing.Point(221, 98);
this.lblLastTagValue.Name = "lblLastTagValue";
this.lblLastTagValue.Size = new System.Drawing.Size(14, 14);
this.lblLastTagValue.TabIndex = 15;
this.lblLastTagValue.Text = "-";
//
// lblLastTag
//
this.lblLastTag.AutoSize = true;
this.lblLastTag.Location = new System.Drawing.Point(151, 98);
this.lblLastTag.Name = "lblLastTag";
this.lblLastTag.Size = new System.Drawing.Size(57, 12);
this.lblLastTag.TabIndex = 14;
this.lblLastTag.Text = "현재태그:";
//
// lblLiftStValue
//
this.lblLiftStValue.AutoSize = true;
this.lblLiftStValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblLiftStValue.Location = new System.Drawing.Point(80, 98);
this.lblLiftStValue.Name = "lblLiftStValue";
this.lblLiftStValue.Size = new System.Drawing.Size(12, 12);
this.lblLiftStValue.TabIndex = 13;
this.lblLiftStValue.Text = "-";
//
// lblLiftSt
//
this.lblLiftSt.AutoSize = true;
this.lblLiftSt.Location = new System.Drawing.Point(10, 98);
this.lblLiftSt.Name = "lblLiftSt";
this.lblLiftSt.Size = new System.Drawing.Size(45, 12);
this.lblLiftSt.TabIndex = 12;
this.lblLiftSt.Text = "리프트:";
//
// lblCartStValue
//
this.lblCartStValue.AutoSize = true;
this.lblCartStValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblCartStValue.Location = new System.Drawing.Point(221, 73);
this.lblCartStValue.Name = "lblCartStValue";
this.lblCartStValue.Size = new System.Drawing.Size(12, 12);
this.lblCartStValue.TabIndex = 11;
this.lblCartStValue.Text = "-";
//
// lblCartSt
//
this.lblCartSt.AutoSize = true;
this.lblCartSt.Location = new System.Drawing.Point(151, 73);
this.lblCartSt.Name = "lblCartSt";
this.lblCartSt.Size = new System.Drawing.Size(33, 12);
this.lblCartSt.TabIndex = 10;
this.lblCartSt.Text = "카트:";
//
// lblChargeStValue
//
this.lblChargeStValue.AutoSize = true;
this.lblChargeStValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblChargeStValue.Location = new System.Drawing.Point(80, 73);
this.lblChargeStValue.Name = "lblChargeStValue";
this.lblChargeStValue.Size = new System.Drawing.Size(12, 12);
this.lblChargeStValue.TabIndex = 9;
this.lblChargeStValue.Text = "-";
//
// lblChargeSt
//
this.lblChargeSt.AutoSize = true;
this.lblChargeSt.Location = new System.Drawing.Point(10, 73);
this.lblChargeSt.Name = "lblChargeSt";
this.lblChargeSt.Size = new System.Drawing.Size(33, 12);
this.lblChargeSt.TabIndex = 8;
this.lblChargeSt.Text = "충전:";
//
// lblInpositionValue
//
this.lblInpositionValue.AutoSize = true;
this.lblInpositionValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblInpositionValue.Location = new System.Drawing.Point(221, 48);
this.lblInpositionValue.Name = "lblInpositionValue";
this.lblInpositionValue.Size = new System.Drawing.Size(12, 12);
this.lblInpositionValue.TabIndex = 7;
this.lblInpositionValue.Text = "-";
//
// lblInposition
//
this.lblInposition.AutoSize = true;
this.lblInposition.Location = new System.Drawing.Point(151, 48);
this.lblInposition.Name = "lblInposition";
this.lblInposition.Size = new System.Drawing.Size(57, 12);
this.lblInposition.TabIndex = 6;
this.lblInposition.Text = "도달완료:";
//
// lblDirectionValue
//
this.lblDirectionValue.AutoSize = true;
this.lblDirectionValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblDirectionValue.Location = new System.Drawing.Point(80, 48);
this.lblDirectionValue.Name = "lblDirectionValue";
this.lblDirectionValue.Size = new System.Drawing.Size(12, 12);
this.lblDirectionValue.TabIndex = 5;
this.lblDirectionValue.Text = "-";
//
// lblRunStValue
//
this.lblRunStValue.AutoSize = true;
this.lblRunStValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblRunStValue.Location = new System.Drawing.Point(221, 23);
this.lblRunStValue.Name = "lblRunStValue";
this.lblRunStValue.Size = new System.Drawing.Size(12, 12);
this.lblRunStValue.TabIndex = 3;
this.lblRunStValue.Text = "-";
//
// lblRunSt
//
this.lblRunSt.AutoSize = true;
this.lblRunSt.Location = new System.Drawing.Point(151, 23);
this.lblRunSt.Name = "lblRunSt";
this.lblRunSt.Size = new System.Drawing.Size(57, 12);
this.lblRunSt.TabIndex = 2;
this.lblRunSt.Text = "실행상태:";
//
// lblModeValue
//
this.lblModeValue.AutoSize = true;
this.lblModeValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblModeValue.Location = new System.Drawing.Point(80, 23);
this.lblModeValue.Name = "lblModeValue";
this.lblModeValue.Size = new System.Drawing.Size(12, 12);
this.lblModeValue.TabIndex = 1;
this.lblModeValue.Text = "-";
//
// lblMode
//
this.lblMode.AutoSize = true;
this.lblMode.Location = new System.Drawing.Point(10, 23);
this.lblMode.Name = "lblMode";
this.lblMode.Size = new System.Drawing.Size(33, 12);
this.lblMode.TabIndex = 0;
this.lblMode.Text = "모드:";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.cmbMagDirection);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.btAMove);
this.groupBox1.Controls.Add(this.cmbAutoSpeed);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.cmbMotDirection);
this.groupBox1.Location = new System.Drawing.Point(240, 202);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(215, 100);
this.groupBox1.TabIndex = 8;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "자동 이동";
//
// btAMove
//
this.btAMove.Location = new System.Drawing.Point(128, 16);
this.btAMove.Name = "btAMove";
this.btAMove.Size = new System.Drawing.Size(81, 74);
this.btAMove.TabIndex = 6;
this.btAMove.Text = "이동";
this.btAMove.UseVisualStyleBackColor = true;
this.btAMove.Click += new System.EventHandler(this.btAMove_Click);
//
// cmbAutoSpeed
//
this.cmbAutoSpeed.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbAutoSpeed.FormattingEnabled = true;
this.cmbAutoSpeed.Items.AddRange(new object[] {
"느림",
"보통",
"빠름"});
this.cmbAutoSpeed.Location = new System.Drawing.Point(52, 69);
this.cmbAutoSpeed.Name = "cmbAutoSpeed";
this.cmbAutoSpeed.Size = new System.Drawing.Size(70, 20);
this.cmbAutoSpeed.TabIndex = 3;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(14, 73);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(29, 12);
this.label4.TabIndex = 2;
this.label4.Text = "속도";
//
// cmbMotDirection
//
this.cmbMotDirection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbMotDirection.FormattingEnabled = true;
this.cmbMotDirection.Items.AddRange(new object[] {
"후진",
"전진"});
this.cmbMotDirection.Location = new System.Drawing.Point(52, 16);
this.cmbMotDirection.Name = "cmbMotDirection";
this.cmbMotDirection.Size = new System.Drawing.Size(70, 20);
this.cmbMotDirection.TabIndex = 1;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(13, 21);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(29, 12);
this.label5.TabIndex = 7;
this.label5.Text = "모터";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(13, 47);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(29, 12);
this.label3.TabIndex = 9;
this.label3.Text = "방향";
//
// cmbMagDirection
//
this.cmbMagDirection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbMagDirection.FormattingEnabled = true;
this.cmbMagDirection.Items.AddRange(new object[] {
"직진",
"좌",
"우"});
this.cmbMagDirection.Location = new System.Drawing.Point(52, 42);
this.cmbMagDirection.Name = "cmbMagDirection";
this.cmbMagDirection.Size = new System.Drawing.Size(70, 20);
this.cmbMagDirection.TabIndex = 8;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1016, 588);
this.Controls.Add(this.grpLift);
this.Controls.Add(this.grpAGVStatus);
this.Controls.Add(this.grpLogs);
this.Controls.Add(this.grpCommands);
this.Controls.Add(this.grpAGV);
this.Controls.Add(this.grpConnection);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ACS 시뮬레이터 - ENIG AGV 테스트";
this.grpConnection.ResumeLayout(false);
this.grpConnection.PerformLayout();
this.grpAGV.ResumeLayout(false);
this.grpAGV.PerformLayout();
this.grpCommands.ResumeLayout(false);
this.grpCommands.PerformLayout();
this.grpLift.ResumeLayout(false);
this.grpManual.ResumeLayout(false);
this.grpManual.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numRuntime)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.txtRFID)).EndInit();
this.grpLogs.ResumeLayout(false);
this.tabLogs.ResumeLayout(false);
this.tabRX.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tabInfo.ResumeLayout(false);
this.tabInfo.PerformLayout();
this.tabPage1.ResumeLayout(false);
this.grpAGVStatus.ResumeLayout(false);
this.grpAGVStatus.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox grpConnection;
private System.Windows.Forms.Button btnConnect;
private System.Windows.Forms.TextBox txtBaudRate;
private System.Windows.Forms.ComboBox cmbPort;
private System.Windows.Forms.Label lblBaudRate;
private System.Windows.Forms.Label lblPort;
private System.Windows.Forms.GroupBox grpAGV;
private System.Windows.Forms.RadioButton rbAGV2;
private System.Windows.Forms.RadioButton rbAGV1;
private System.Windows.Forms.GroupBox grpCommands;
private System.Windows.Forms.Button btnSetCurrent;
private System.Windows.Forms.NumericUpDown txtRFID;
private System.Windows.Forms.Label lblRFID;
private System.Windows.Forms.Button btnGoto;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.Button btnReset;
private System.Windows.Forms.Button btnMarkStop;
private System.Windows.Forms.CheckBox chkMarkStop;
private System.Windows.Forms.GroupBox grpManual;
private System.Windows.Forms.Button btMMove;
private System.Windows.Forms.NumericUpDown numRuntime;
private System.Windows.Forms.Label lblRuntime;
private System.Windows.Forms.ComboBox cmbSpeed;
private System.Windows.Forms.Label lblSpeed;
private System.Windows.Forms.ComboBox cmbDirection;
private System.Windows.Forms.GroupBox grpLift;
private System.Windows.Forms.Button btnLiftStop;
private System.Windows.Forms.Button btnLiftDown;
private System.Windows.Forms.Button btnLiftUp;
private System.Windows.Forms.GroupBox grpLogs;
private System.Windows.Forms.TabControl tabLogs;
private System.Windows.Forms.TextBox txtTxLog;
private System.Windows.Forms.TabPage tabRX;
private System.Windows.Forms.TextBox txtRxLog;
private System.Windows.Forms.TabPage tabInfo;
private System.Windows.Forms.TextBox txtInfoLog;
private System.Windows.Forms.Button btnRefresh;
private System.Windows.Forms.Button btnGotoAlias;
private System.Windows.Forms.TextBox txtAlias;
private System.Windows.Forms.Label lblAlias;
private System.Windows.Forms.GroupBox grpAGVStatus;
private System.Windows.Forms.Label lblLastTagValue;
private System.Windows.Forms.Label lblLastTag;
private System.Windows.Forms.Label lblLiftStValue;
private System.Windows.Forms.Label lblLiftSt;
private System.Windows.Forms.Label lblCartStValue;
private System.Windows.Forms.Label lblCartSt;
private System.Windows.Forms.Label lblChargeStValue;
private System.Windows.Forms.Label lblChargeSt;
private System.Windows.Forms.Label lblInpositionValue;
private System.Windows.Forms.Label lblInposition;
private System.Windows.Forms.Label lblDirectionValue;
private System.Windows.Forms.Label lblDirection;
private System.Windows.Forms.Label lblRunStValue;
private System.Windows.Forms.Label lblRunSt;
private System.Windows.Forms.Label lblModeValue;
private System.Windows.Forms.Label lblMode;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btAMove;
private System.Windows.Forms.ComboBox cmbAutoSpeed;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox cmbMotDirection;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox cmbMagDirection;
}
}