123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- namespace FPER
- {
- partial class FormDevice
- {
- /// <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.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.textBox2 = new System.Windows.Forms.TextBox();
- this.timerHide = new System.Windows.Forms.Timer(this.components);
- this.button_InputTest_OFF = new System.Windows.Forms.Button();
- this.label_InputTest = new System.Windows.Forms.Label();
- this.button_InputTest_ON = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.SuspendLayout();
- //
- // pictureBox1
- //
- this.pictureBox1.BackColor = System.Drawing.Color.White;
- this.pictureBox1.Enabled = false;
- this.pictureBox1.Location = new System.Drawing.Point(7, 7);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(99, 89);
- this.pictureBox1.TabIndex = 0;
- this.pictureBox1.TabStop = false;
- //
- // textBox1
- //
- this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.textBox1.Location = new System.Drawing.Point(107, 7);
- this.textBox1.Multiline = true;
- this.textBox1.Name = "textBox1";
- this.textBox1.ReadOnly = true;
- this.textBox1.Size = new System.Drawing.Size(191, 64);
- this.textBox1.TabIndex = 1;
- this.textBox1.Text = "속성";
- //
- // textBox2
- //
- this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.textBox2.Location = new System.Drawing.Point(107, 71);
- this.textBox2.Multiline = true;
- this.textBox2.Name = "textBox2";
- this.textBox2.ReadOnly = true;
- this.textBox2.Size = new System.Drawing.Size(191, 26);
- this.textBox2.TabIndex = 2;
- this.textBox2.Text = "상태";
- //
- // timerHide
- //
- this.timerHide.Interval = 200;
- this.timerHide.Tick += new System.EventHandler(this.timerHide_Tick);
- //
- // button_InputTest_OFF
- //
- this.button_InputTest_OFF.Location = new System.Drawing.Point(205, 106);
- this.button_InputTest_OFF.Name = "button_InputTest_OFF";
- this.button_InputTest_OFF.Size = new System.Drawing.Size(75, 23);
- this.button_InputTest_OFF.TabIndex = 3;
- this.button_InputTest_OFF.Text = "OFF";
- this.button_InputTest_OFF.UseVisualStyleBackColor = true;
- this.button_InputTest_OFF.Click += new System.EventHandler(this.button_InputTest_OFF_Click);
- //
- // label_InputTest
- //
- this.label_InputTest.AutoSize = true;
- this.label_InputTest.Location = new System.Drawing.Point(12, 113);
- this.label_InputTest.Name = "label_InputTest";
- this.label_InputTest.Size = new System.Drawing.Size(97, 12);
- this.label_InputTest.TabIndex = 4;
- this.label_InputTest.Text = "입력 시험 테스트";
- //
- // button_InputTest_ON
- //
- this.button_InputTest_ON.Location = new System.Drawing.Point(124, 106);
- this.button_InputTest_ON.Name = "button_InputTest_ON";
- this.button_InputTest_ON.Size = new System.Drawing.Size(75, 23);
- this.button_InputTest_ON.TabIndex = 3;
- this.button_InputTest_ON.Text = "ON";
- this.button_InputTest_ON.UseVisualStyleBackColor = true;
- this.button_InputTest_ON.Click += new System.EventHandler(this.button_InputTest_ON_Click);
- //
- // FormDevice
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ClientSize = new System.Drawing.Size(305, 103);
- this.ControlBox = false;
- this.Controls.Add(this.label_InputTest);
- this.Controls.Add(this.button_InputTest_ON);
- this.Controls.Add(this.button_InputTest_OFF);
- this.Controls.Add(this.textBox2);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.pictureBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "FormDevice";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
- this.Text = "DeviceFrm";
- this.Deactivate += new System.EventHandler(this.FormDevice_Deactivate);
- this.VisibleChanged += new System.EventHandler(this.FormDevice_VisibleChanged);
- this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.FormDevice_MouseClick);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.TextBox textBox2;
- private System.Windows.Forms.Timer timerHide;
- private System.Windows.Forms.Button button_InputTest_OFF;
- private System.Windows.Forms.Label label_InputTest;
- private System.Windows.Forms.Button button_InputTest_ON;
- }
- }
|