FormDevice.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. namespace FPER
  2. {
  3. partial class FormDevice
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.textBox2 = new System.Windows.Forms.TextBox();
  32. this.timerHide = new System.Windows.Forms.Timer(this.components);
  33. this.button_InputTest_OFF = new System.Windows.Forms.Button();
  34. this.label_InputTest = new System.Windows.Forms.Label();
  35. this.button_InputTest_ON = new System.Windows.Forms.Button();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // pictureBox1
  40. //
  41. this.pictureBox1.BackColor = System.Drawing.Color.White;
  42. this.pictureBox1.Enabled = false;
  43. this.pictureBox1.Location = new System.Drawing.Point(7, 7);
  44. this.pictureBox1.Name = "pictureBox1";
  45. this.pictureBox1.Size = new System.Drawing.Size(99, 89);
  46. this.pictureBox1.TabIndex = 0;
  47. this.pictureBox1.TabStop = false;
  48. //
  49. // textBox1
  50. //
  51. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  52. this.textBox1.Location = new System.Drawing.Point(107, 7);
  53. this.textBox1.Multiline = true;
  54. this.textBox1.Name = "textBox1";
  55. this.textBox1.ReadOnly = true;
  56. this.textBox1.Size = new System.Drawing.Size(191, 64);
  57. this.textBox1.TabIndex = 1;
  58. this.textBox1.Text = "속성";
  59. //
  60. // textBox2
  61. //
  62. this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  63. this.textBox2.Location = new System.Drawing.Point(107, 71);
  64. this.textBox2.Multiline = true;
  65. this.textBox2.Name = "textBox2";
  66. this.textBox2.ReadOnly = true;
  67. this.textBox2.Size = new System.Drawing.Size(191, 26);
  68. this.textBox2.TabIndex = 2;
  69. this.textBox2.Text = "상태";
  70. //
  71. // timerHide
  72. //
  73. this.timerHide.Interval = 200;
  74. this.timerHide.Tick += new System.EventHandler(this.timerHide_Tick);
  75. //
  76. // button_InputTest_OFF
  77. //
  78. this.button_InputTest_OFF.Location = new System.Drawing.Point(205, 106);
  79. this.button_InputTest_OFF.Name = "button_InputTest_OFF";
  80. this.button_InputTest_OFF.Size = new System.Drawing.Size(75, 23);
  81. this.button_InputTest_OFF.TabIndex = 3;
  82. this.button_InputTest_OFF.Text = "OFF";
  83. this.button_InputTest_OFF.UseVisualStyleBackColor = true;
  84. this.button_InputTest_OFF.Click += new System.EventHandler(this.button_InputTest_OFF_Click);
  85. //
  86. // label_InputTest
  87. //
  88. this.label_InputTest.AutoSize = true;
  89. this.label_InputTest.Location = new System.Drawing.Point(12, 113);
  90. this.label_InputTest.Name = "label_InputTest";
  91. this.label_InputTest.Size = new System.Drawing.Size(97, 12);
  92. this.label_InputTest.TabIndex = 4;
  93. this.label_InputTest.Text = "입력 시험 테스트";
  94. //
  95. // button_InputTest_ON
  96. //
  97. this.button_InputTest_ON.Location = new System.Drawing.Point(124, 106);
  98. this.button_InputTest_ON.Name = "button_InputTest_ON";
  99. this.button_InputTest_ON.Size = new System.Drawing.Size(75, 23);
  100. this.button_InputTest_ON.TabIndex = 3;
  101. this.button_InputTest_ON.Text = "ON";
  102. this.button_InputTest_ON.UseVisualStyleBackColor = true;
  103. this.button_InputTest_ON.Click += new System.EventHandler(this.button_InputTest_ON_Click);
  104. //
  105. // FormDevice
  106. //
  107. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  108. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109. this.BackColor = System.Drawing.Color.LightSteelBlue;
  110. this.ClientSize = new System.Drawing.Size(305, 103);
  111. this.ControlBox = false;
  112. this.Controls.Add(this.label_InputTest);
  113. this.Controls.Add(this.button_InputTest_ON);
  114. this.Controls.Add(this.button_InputTest_OFF);
  115. this.Controls.Add(this.textBox2);
  116. this.Controls.Add(this.textBox1);
  117. this.Controls.Add(this.pictureBox1);
  118. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  119. this.Name = "FormDevice";
  120. this.ShowIcon = false;
  121. this.ShowInTaskbar = false;
  122. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  123. this.Text = "DeviceFrm";
  124. this.Deactivate += new System.EventHandler(this.FormDevice_Deactivate);
  125. this.VisibleChanged += new System.EventHandler(this.FormDevice_VisibleChanged);
  126. this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.FormDevice_MouseClick);
  127. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  128. this.ResumeLayout(false);
  129. this.PerformLayout();
  130. }
  131. #endregion
  132. private System.Windows.Forms.PictureBox pictureBox1;
  133. private System.Windows.Forms.TextBox textBox1;
  134. private System.Windows.Forms.TextBox textBox2;
  135. private System.Windows.Forms.Timer timerHide;
  136. private System.Windows.Forms.Button button_InputTest_OFF;
  137. private System.Windows.Forms.Label label_InputTest;
  138. private System.Windows.Forms.Button button_InputTest_ON;
  139. }
  140. }