 afe2605e98
			
		
	
	afe2605e98
	
	
	
		
			
			** ERP 작업 전면 중단 (마크우선) ** *** 마크작성 - 칸채우기 버그 수정을 위해 테스트 계정 제외하고 잠금*** 1. 복본 조사 ㄴ> 전남 무안군 공공도서관 추가 2. UI개편 ㄴ> 현재 마크탭에서 표출되는 DataGridView 뒷 배경색에 맞춰 공간 안보이게 해버림.
		
			
				
	
	
		
			93 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace ExcelTest
 | |
| {
 | |
|     partial class Helper008
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Required designer variable.
 | |
|         /// </summary>
 | |
|         private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Clean up any resources being used.
 | |
|         /// </summary>
 | |
|         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
|         protected override void Dispose(bool disposing)
 | |
|         {
 | |
|             if (disposing && (components != null))
 | |
|             {
 | |
|                 components.Dispose();
 | |
|             }
 | |
|             base.Dispose(disposing);
 | |
|         }
 | |
| 
 | |
|         #region Windows Form Designer generated code
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Required method for Designer support - do not modify
 | |
|         /// the contents of this method with the code editor.
 | |
|         /// </summary>
 | |
|         private void InitializeComponent()
 | |
|         {
 | |
|             System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
 | |
|             this.dataGridView1 = new System.Windows.Forms.DataGridView();
 | |
|             this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // dataGridView1
 | |
|             // 
 | |
|             dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
 | |
|             dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
 | |
|             dataGridViewCellStyle1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
 | |
|             dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
 | |
|             dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
 | |
|             dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
 | |
|             this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
 | |
|             this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
 | |
|             this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
 | |
|             this.Column1,
 | |
|             this.Column2});
 | |
|             this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.dataGridView1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.dataGridView1.Name = "dataGridView1";
 | |
|             this.dataGridView1.RowTemplate.Height = 23;
 | |
|             this.dataGridView1.Size = new System.Drawing.Size(443, 197);
 | |
|             this.dataGridView1.TabIndex = 0;
 | |
|             this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellDoubleClick);
 | |
|             this.dataGridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView1_KeyDown);
 | |
|             // 
 | |
|             // Column1
 | |
|             // 
 | |
|             this.Column1.HeaderText = "명칭";
 | |
|             this.Column1.Name = "Column1";
 | |
|             this.Column1.ReadOnly = true;
 | |
|             this.Column1.Width = 300;
 | |
|             // 
 | |
|             // Column2
 | |
|             // 
 | |
|             this.Column2.HeaderText = "코드번호";
 | |
|             this.Column2.Name = "Column2";
 | |
|             this.Column2.ReadOnly = true;
 | |
|             // 
 | |
|             // Helper008
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(443, 197);
 | |
|             this.Controls.Add(this.dataGridView1);
 | |
|             this.Name = "Helper008";
 | |
|             this.Text = "Helper008";
 | |
|             this.Load += new System.EventHandler(this.Helper008_Load);
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
 | |
|         public System.Windows.Forms.DataGridView dataGridView1;
 | |
|     }
 | |
| } |