frmModalDeviceType.Designer.cs 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. namespace FPER
  2. {
  3. partial class frmModalDeviceType
  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. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  31. this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.groupBox1 = new System.Windows.Forms.GroupBox();
  35. this.label1 = new System.Windows.Forms.Label();
  36. this.btnOK = new System.Windows.Forms.Button();
  37. this.txtSearchKey = new System.Windows.Forms.TextBox();
  38. this.btnCancel = new System.Windows.Forms.Button();
  39. this.btnSaveOK = new System.Windows.Forms.Button();
  40. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  41. this.groupBox1.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // dataGridView1
  45. //
  46. this.dataGridView1.AllowUserToAddRows = false;
  47. this.dataGridView1.AllowUserToDeleteRows = false;
  48. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  49. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  50. this.Column3,
  51. this.Column1,
  52. this.Column2});
  53. this.dataGridView1.Location = new System.Drawing.Point(4, 88);
  54. this.dataGridView1.Margin = new System.Windows.Forms.Padding(4);
  55. this.dataGridView1.MultiSelect = false;
  56. this.dataGridView1.Name = "dataGridView1";
  57. this.dataGridView1.RowTemplate.Height = 23;
  58. this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  59. this.dataGridView1.Size = new System.Drawing.Size(462, 279);
  60. this.dataGridView1.TabIndex = 0;
  61. this.dataGridView1.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentDoubleClick);
  62. //
  63. // Column3
  64. //
  65. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  66. this.Column3.DefaultCellStyle = dataGridViewCellStyle1;
  67. this.Column3.HeaderText = "타입";
  68. this.Column3.Name = "Column3";
  69. this.Column3.ReadOnly = true;
  70. this.Column3.Width = 80;
  71. //
  72. // Column1
  73. //
  74. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  75. this.Column1.DefaultCellStyle = dataGridViewCellStyle2;
  76. this.Column1.HeaderText = "코드";
  77. this.Column1.Name = "Column1";
  78. this.Column1.ReadOnly = true;
  79. this.Column1.Width = 80;
  80. //
  81. // Column2
  82. //
  83. this.Column2.HeaderText = "코드명";
  84. this.Column2.Name = "Column2";
  85. this.Column2.ReadOnly = true;
  86. this.Column2.Width = 240;
  87. //
  88. // groupBox1
  89. //
  90. this.groupBox1.Controls.Add(this.label1);
  91. this.groupBox1.Controls.Add(this.btnOK);
  92. this.groupBox1.Controls.Add(this.txtSearchKey);
  93. this.groupBox1.Location = new System.Drawing.Point(4, 3);
  94. this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
  95. this.groupBox1.Name = "groupBox1";
  96. this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
  97. this.groupBox1.Size = new System.Drawing.Size(463, 77);
  98. this.groupBox1.TabIndex = 1;
  99. this.groupBox1.TabStop = false;
  100. this.groupBox1.Text = "검색조건";
  101. //
  102. // label1
  103. //
  104. this.label1.AutoSize = true;
  105. this.label1.Location = new System.Drawing.Point(14, 32);
  106. this.label1.Name = "label1";
  107. this.label1.Size = new System.Drawing.Size(66, 16);
  108. this.label1.TabIndex = 2;
  109. this.label1.Text = "검색어 :";
  110. //
  111. // btnOK
  112. //
  113. this.btnOK.Location = new System.Drawing.Point(354, 25);
  114. this.btnOK.Name = "btnOK";
  115. this.btnOK.Size = new System.Drawing.Size(102, 30);
  116. this.btnOK.TabIndex = 1;
  117. this.btnOK.Text = "검색";
  118. this.btnOK.UseVisualStyleBackColor = true;
  119. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  120. //
  121. // txtSearchKey
  122. //
  123. this.txtSearchKey.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  124. this.txtSearchKey.Location = new System.Drawing.Point(85, 27);
  125. this.txtSearchKey.Margin = new System.Windows.Forms.Padding(4);
  126. this.txtSearchKey.Name = "txtSearchKey";
  127. this.txtSearchKey.Size = new System.Drawing.Size(262, 26);
  128. this.txtSearchKey.TabIndex = 0;
  129. this.txtSearchKey.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearchKey_KeyDown);
  130. //
  131. // btnCancel
  132. //
  133. this.btnCancel.Location = new System.Drawing.Point(367, 381);
  134. this.btnCancel.Name = "btnCancel";
  135. this.btnCancel.Size = new System.Drawing.Size(100, 33);
  136. this.btnCancel.TabIndex = 9;
  137. this.btnCancel.Text = "취소";
  138. this.btnCancel.UseVisualStyleBackColor = true;
  139. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  140. //
  141. // btnSaveOK
  142. //
  143. this.btnSaveOK.Location = new System.Drawing.Point(249, 381);
  144. this.btnSaveOK.Name = "btnSaveOK";
  145. this.btnSaveOK.Size = new System.Drawing.Size(100, 33);
  146. this.btnSaveOK.TabIndex = 8;
  147. this.btnSaveOK.Text = "확인";
  148. this.btnSaveOK.UseVisualStyleBackColor = true;
  149. this.btnSaveOK.Click += new System.EventHandler(this.btnSaveOK_Click);
  150. //
  151. // frmModalDeviceType
  152. //
  153. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 16F);
  154. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  155. this.BackColor = System.Drawing.Color.WhiteSmoke;
  156. this.ClientSize = new System.Drawing.Size(474, 424);
  157. this.Controls.Add(this.btnCancel);
  158. this.Controls.Add(this.btnSaveOK);
  159. this.Controls.Add(this.groupBox1);
  160. this.Controls.Add(this.dataGridView1);
  161. this.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  162. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  163. this.Margin = new System.Windows.Forms.Padding(4);
  164. this.MaximizeBox = false;
  165. this.MinimizeBox = false;
  166. this.Name = "frmModalDeviceType";
  167. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  168. this.Text = "연동타입찾기";
  169. this.Load += new System.EventHandler(this.frmModalDeviceType_Load);
  170. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  171. this.groupBox1.ResumeLayout(false);
  172. this.groupBox1.PerformLayout();
  173. this.ResumeLayout(false);
  174. }
  175. #endregion
  176. private System.Windows.Forms.DataGridView dataGridView1;
  177. private System.Windows.Forms.GroupBox groupBox1;
  178. private System.Windows.Forms.TextBox txtSearchKey;
  179. private System.Windows.Forms.Button btnOK;
  180. private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
  181. private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
  182. private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
  183. private System.Windows.Forms.Label label1;
  184. private System.Windows.Forms.Button btnCancel;
  185. private System.Windows.Forms.Button btnSaveOK;
  186. }
  187. }