initial commit
This commit is contained in:
222
Cs_HMI/TestProject/Test_NLRF100/Form1.Designer.cs
generated
Normal file
222
Cs_HMI/TestProject/Test_NLRF100/Form1.Designer.cs
generated
Normal file
@@ -0,0 +1,222 @@
|
||||
namespace Test_NLRF100
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
/// <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 Windows Form 디자이너에서 생성한 코드
|
||||
|
||||
/// <summary>
|
||||
/// 디자이너 지원에 필요한 메서드입니다.
|
||||
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.radRs232 = new System.Windows.Forms.RadioButton();
|
||||
this.radTcp = new System.Windows.Forms.RadioButton();
|
||||
this.tbAddr = new System.Windows.Forms.TextBox();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.btOpen = new System.Windows.Forms.Button();
|
||||
this.logTextBox1 = new arCtl.LogTextBox();
|
||||
this.btClose = new System.Windows.Forms.Button();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.button2 = new System.Windows.Forms.Button();
|
||||
this.button3 = new System.Windows.Forms.Button();
|
||||
this.button4 = new System.Windows.Forms.Button();
|
||||
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// radRs232
|
||||
//
|
||||
this.radRs232.AutoSize = true;
|
||||
this.radRs232.Location = new System.Drawing.Point(21, 17);
|
||||
this.radRs232.Name = "radRs232";
|
||||
this.radRs232.Size = new System.Drawing.Size(57, 16);
|
||||
this.radRs232.TabIndex = 0;
|
||||
this.radRs232.Text = "RS232";
|
||||
this.radRs232.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// radTcp
|
||||
//
|
||||
this.radTcp.AutoSize = true;
|
||||
this.radTcp.Checked = true;
|
||||
this.radTcp.Location = new System.Drawing.Point(21, 39);
|
||||
this.radTcp.Name = "radTcp";
|
||||
this.radTcp.Size = new System.Drawing.Size(65, 16);
|
||||
this.radTcp.TabIndex = 0;
|
||||
this.radTcp.TabStop = true;
|
||||
this.radTcp.Text = "TCP/IP";
|
||||
this.radTcp.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// tbAddr
|
||||
//
|
||||
this.tbAddr.Location = new System.Drawing.Point(93, 34);
|
||||
this.tbAddr.Name = "tbAddr";
|
||||
this.tbAddr.Size = new System.Drawing.Size(135, 21);
|
||||
this.tbAddr.TabIndex = 1;
|
||||
this.tbAddr.Text = "192.168.1.10";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(91, 17);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(88, 12);
|
||||
this.label1.TabIndex = 2;
|
||||
this.label1.Text = "Port / Address";
|
||||
//
|
||||
// btOpen
|
||||
//
|
||||
this.btOpen.Location = new System.Drawing.Point(250, 14);
|
||||
this.btOpen.Name = "btOpen";
|
||||
this.btOpen.Size = new System.Drawing.Size(90, 40);
|
||||
this.btOpen.TabIndex = 3;
|
||||
this.btOpen.Text = "Open";
|
||||
this.btOpen.UseVisualStyleBackColor = true;
|
||||
this.btOpen.Click += new System.EventHandler(this.btOpen_Click);
|
||||
//
|
||||
// logTextBox1
|
||||
//
|
||||
this.logTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.logTextBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(24)))), ((int)(((byte)(24)))));
|
||||
this.logTextBox1.ColorList = new arCtl.sLogMessageColor[0];
|
||||
this.logTextBox1.DateFormat = "yy-MM-dd HH:mm:ss";
|
||||
this.logTextBox1.DefaultColor = System.Drawing.Color.LightGray;
|
||||
this.logTextBox1.EnableDisplayTimer = false;
|
||||
this.logTextBox1.EnableGubunColor = true;
|
||||
this.logTextBox1.Font = new System.Drawing.Font("Consolas", 9F);
|
||||
this.logTextBox1.ListFormat = "[{0}] {1}";
|
||||
this.logTextBox1.Location = new System.Drawing.Point(17, 66);
|
||||
this.logTextBox1.MaxListCount = ((ushort)(200));
|
||||
this.logTextBox1.MaxTextLength = ((uint)(4000u));
|
||||
this.logTextBox1.MessageInterval = 50;
|
||||
this.logTextBox1.Name = "logTextBox1";
|
||||
this.logTextBox1.Size = new System.Drawing.Size(419, 331);
|
||||
this.logTextBox1.TabIndex = 4;
|
||||
this.logTextBox1.Text = "";
|
||||
//
|
||||
// btClose
|
||||
//
|
||||
this.btClose.Location = new System.Drawing.Point(346, 14);
|
||||
this.btClose.Name = "btClose";
|
||||
this.btClose.Size = new System.Drawing.Size(90, 40);
|
||||
this.btClose.TabIndex = 5;
|
||||
this.btClose.Text = "Close";
|
||||
this.btClose.UseVisualStyleBackColor = true;
|
||||
this.btClose.Click += new System.EventHandler(this.btClose_Click);
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.button1.Enabled = false;
|
||||
this.button1.Location = new System.Drawing.Point(20, 403);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(90, 40);
|
||||
this.button1.TabIndex = 6;
|
||||
this.button1.Text = "Read";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// button2
|
||||
//
|
||||
this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.button2.Enabled = false;
|
||||
this.button2.Location = new System.Drawing.Point(116, 403);
|
||||
this.button2.Name = "button2";
|
||||
this.button2.Size = new System.Drawing.Size(90, 40);
|
||||
this.button2.TabIndex = 7;
|
||||
this.button2.Text = "Stop";
|
||||
this.button2.UseVisualStyleBackColor = true;
|
||||
this.button2.Click += new System.EventHandler(this.button2_Click);
|
||||
//
|
||||
// button3
|
||||
//
|
||||
this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.button3.Enabled = false;
|
||||
this.button3.Location = new System.Drawing.Point(212, 403);
|
||||
this.button3.Name = "button3";
|
||||
this.button3.Size = new System.Drawing.Size(90, 40);
|
||||
this.button3.TabIndex = 8;
|
||||
this.button3.Text = "Help";
|
||||
this.button3.UseVisualStyleBackColor = true;
|
||||
this.button3.Click += new System.EventHandler(this.button3_Click);
|
||||
//
|
||||
// button4
|
||||
//
|
||||
this.button4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.button4.Enabled = false;
|
||||
this.button4.Location = new System.Drawing.Point(337, 403);
|
||||
this.button4.Name = "button4";
|
||||
this.button4.Size = new System.Drawing.Size(90, 40);
|
||||
this.button4.TabIndex = 9;
|
||||
this.button4.Text = "Ping";
|
||||
this.button4.UseVisualStyleBackColor = true;
|
||||
this.button4.Click += new System.EventHandler(this.button4_Click);
|
||||
//
|
||||
// timer1
|
||||
//
|
||||
this.timer1.Interval = 200;
|
||||
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(449, 450);
|
||||
this.Controls.Add(this.button4);
|
||||
this.Controls.Add(this.button3);
|
||||
this.Controls.Add(this.button2);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(this.btClose);
|
||||
this.Controls.Add(this.logTextBox1);
|
||||
this.Controls.Add(this.btOpen);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.tbAddr);
|
||||
this.Controls.Add(this.radTcp);
|
||||
this.Controls.Add(this.radRs232);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "Form1";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Form1";
|
||||
this.Load += new System.EventHandler(this.Form1_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.RadioButton radRs232;
|
||||
private System.Windows.Forms.RadioButton radTcp;
|
||||
private System.Windows.Forms.TextBox tbAddr;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.Button btOpen;
|
||||
private arCtl.LogTextBox logTextBox1;
|
||||
private System.Windows.Forms.Button btClose;
|
||||
private System.Windows.Forms.Button button1;
|
||||
private System.Windows.Forms.Button button2;
|
||||
private System.Windows.Forms.Button button3;
|
||||
private System.Windows.Forms.Button button4;
|
||||
private System.Windows.Forms.Timer timer1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user