frmModalPositionCode.Designer.cs 8.9 KB

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