364 lines
17 KiB
C#
364 lines
17 KiB
C#
namespace WindowsFormsApp1.Mac
|
|
{
|
|
partial class Mac_List
|
|
{
|
|
/// <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();
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.tb_Search = new System.Windows.Forms.TextBox();
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.idx = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.start_date = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.end_date = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.list_marc = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.list_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.KDC = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.total = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.flatter = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.unflatter = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.state = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.grade = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.etc = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.charge = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.check = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.cb_state = new System.Windows.Forms.ComboBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.btn_Lookup = new System.Windows.Forms.Button();
|
|
this.btn_Excel = new System.Windows.Forms.Button();
|
|
this.btn_Merge = new System.Windows.Forms.Button();
|
|
this.btn_Progress = new System.Windows.Forms.Button();
|
|
this.btn_Completion = new System.Windows.Forms.Button();
|
|
this.btn_Delete = new System.Windows.Forms.Button();
|
|
this.btn_Close = new System.Windows.Forms.Button();
|
|
this.btn_Save = new System.Windows.Forms.Button();
|
|
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(21, 14);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(57, 12);
|
|
this.label1.TabIndex = 5;
|
|
this.label1.Text = "목록 검색";
|
|
//
|
|
// tb_Search
|
|
//
|
|
this.tb_Search.Location = new System.Drawing.Point(80, 10);
|
|
this.tb_Search.Name = "tb_Search";
|
|
this.tb_Search.Size = new System.Drawing.Size(241, 21);
|
|
this.tb_Search.TabIndex = 6;
|
|
this.tb_Search.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_Search_KeyDown);
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.AllowUserToAddRows = false;
|
|
this.dataGridView1.AllowUserToDeleteRows = false;
|
|
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.idx,
|
|
this.start_date,
|
|
this.end_date,
|
|
this.list_marc,
|
|
this.list_name,
|
|
this.KDC,
|
|
this.total,
|
|
this.flatter,
|
|
this.unflatter,
|
|
this.state,
|
|
this.grade,
|
|
this.etc,
|
|
this.charge,
|
|
this.check});
|
|
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
|
|
dataGridViewCellStyle2.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
|
dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
|
|
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
|
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
|
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
|
|
this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle2;
|
|
this.dataGridView1.Location = new System.Drawing.Point(12, 39);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.RowHeadersWidth = 40;
|
|
this.dataGridView1.RowTemplate.Height = 23;
|
|
this.dataGridView1.Size = new System.Drawing.Size(1156, 598);
|
|
this.dataGridView1.TabIndex = 48;
|
|
this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
|
|
this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellDoubleClick);
|
|
this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
|
|
//
|
|
// idx
|
|
//
|
|
this.idx.HeaderText = "idx";
|
|
this.idx.Name = "idx";
|
|
this.idx.Visible = false;
|
|
//
|
|
// start_date
|
|
//
|
|
this.start_date.HeaderText = "등록일";
|
|
this.start_date.Name = "start_date";
|
|
//
|
|
// end_date
|
|
//
|
|
this.end_date.HeaderText = "마감일";
|
|
this.end_date.Name = "end_date";
|
|
//
|
|
// list_marc
|
|
//
|
|
this.list_marc.HeaderText = "작업목록명";
|
|
this.list_marc.Name = "list_marc";
|
|
this.list_marc.Width = 170;
|
|
//
|
|
// list_name
|
|
//
|
|
this.list_name.HeaderText = "연동목록명";
|
|
this.list_name.Name = "list_name";
|
|
this.list_name.Visible = false;
|
|
//
|
|
// KDC
|
|
//
|
|
this.KDC.HeaderText = "분류";
|
|
this.KDC.Name = "KDC";
|
|
this.KDC.Width = 80;
|
|
//
|
|
// total
|
|
//
|
|
this.total.HeaderText = "전체";
|
|
this.total.Name = "total";
|
|
this.total.Width = 70;
|
|
//
|
|
// flatter
|
|
//
|
|
this.flatter.HeaderText = "편목";
|
|
this.flatter.Name = "flatter";
|
|
this.flatter.Width = 70;
|
|
//
|
|
// unflatter
|
|
//
|
|
this.unflatter.HeaderText = "미편목";
|
|
this.unflatter.Name = "unflatter";
|
|
this.unflatter.Width = 70;
|
|
//
|
|
// state
|
|
//
|
|
this.state.HeaderText = "상태";
|
|
this.state.Name = "state";
|
|
this.state.Width = 70;
|
|
//
|
|
// grade
|
|
//
|
|
this.grade.HeaderText = "등급";
|
|
this.grade.Name = "grade";
|
|
this.grade.Width = 60;
|
|
//
|
|
// etc
|
|
//
|
|
this.etc.HeaderText = "비고";
|
|
this.etc.Name = "etc";
|
|
this.etc.Width = 170;
|
|
//
|
|
// charge
|
|
//
|
|
this.charge.HeaderText = "담당자";
|
|
this.charge.Name = "charge";
|
|
//
|
|
// check
|
|
//
|
|
this.check.HeaderText = "V";
|
|
this.check.Name = "check";
|
|
this.check.Width = 35;
|
|
//
|
|
// cb_state
|
|
//
|
|
this.cb_state.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.cb_state.FormattingEnabled = true;
|
|
this.cb_state.Location = new System.Drawing.Point(372, 10);
|
|
this.cb_state.Name = "cb_state";
|
|
this.cb_state.Size = new System.Drawing.Size(74, 20);
|
|
this.cb_state.TabIndex = 49;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(341, 14);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(29, 12);
|
|
this.label2.TabIndex = 5;
|
|
this.label2.Text = "상태";
|
|
//
|
|
// btn_Lookup
|
|
//
|
|
this.btn_Lookup.Location = new System.Drawing.Point(489, 4);
|
|
this.btn_Lookup.Name = "btn_Lookup";
|
|
this.btn_Lookup.Size = new System.Drawing.Size(75, 32);
|
|
this.btn_Lookup.TabIndex = 50;
|
|
this.btn_Lookup.Text = "조 회";
|
|
this.btn_Lookup.UseVisualStyleBackColor = true;
|
|
this.btn_Lookup.Click += new System.EventHandler(this.btn_Lookup_Click);
|
|
//
|
|
// btn_Excel
|
|
//
|
|
this.btn_Excel.Location = new System.Drawing.Point(651, 4);
|
|
this.btn_Excel.Name = "btn_Excel";
|
|
this.btn_Excel.Size = new System.Drawing.Size(75, 32);
|
|
this.btn_Excel.TabIndex = 50;
|
|
this.btn_Excel.Text = "엑셀반출";
|
|
this.btn_Excel.UseVisualStyleBackColor = true;
|
|
this.btn_Excel.Click += new System.EventHandler(this.btn_Excel_Click);
|
|
//
|
|
// btn_Merge
|
|
//
|
|
this.btn_Merge.Location = new System.Drawing.Point(732, 4);
|
|
this.btn_Merge.Name = "btn_Merge";
|
|
this.btn_Merge.Size = new System.Drawing.Size(75, 32);
|
|
this.btn_Merge.TabIndex = 50;
|
|
this.btn_Merge.Text = "목록병합";
|
|
this.btn_Merge.UseVisualStyleBackColor = true;
|
|
this.btn_Merge.Click += new System.EventHandler(this.btn_Merge_Click);
|
|
//
|
|
// btn_Progress
|
|
//
|
|
this.btn_Progress.Location = new System.Drawing.Point(813, 4);
|
|
this.btn_Progress.Name = "btn_Progress";
|
|
this.btn_Progress.Size = new System.Drawing.Size(75, 32);
|
|
this.btn_Progress.TabIndex = 50;
|
|
this.btn_Progress.Text = "목록진행";
|
|
this.btn_Progress.UseVisualStyleBackColor = true;
|
|
this.btn_Progress.Click += new System.EventHandler(this.btn_Progress_Click);
|
|
//
|
|
// btn_Completion
|
|
//
|
|
this.btn_Completion.Location = new System.Drawing.Point(894, 4);
|
|
this.btn_Completion.Name = "btn_Completion";
|
|
this.btn_Completion.Size = new System.Drawing.Size(75, 32);
|
|
this.btn_Completion.TabIndex = 50;
|
|
this.btn_Completion.Text = "목록완료";
|
|
this.btn_Completion.UseVisualStyleBackColor = true;
|
|
this.btn_Completion.Click += new System.EventHandler(this.btn_Completion_Click);
|
|
//
|
|
// btn_Delete
|
|
//
|
|
this.btn_Delete.Location = new System.Drawing.Point(975, 4);
|
|
this.btn_Delete.Name = "btn_Delete";
|
|
this.btn_Delete.Size = new System.Drawing.Size(75, 32);
|
|
this.btn_Delete.TabIndex = 50;
|
|
this.btn_Delete.Text = "목록삭제";
|
|
this.btn_Delete.UseVisualStyleBackColor = true;
|
|
this.btn_Delete.Click += new System.EventHandler(this.btn_Delete_Click);
|
|
//
|
|
// btn_Close
|
|
//
|
|
this.btn_Close.Location = new System.Drawing.Point(1056, 4);
|
|
this.btn_Close.Name = "btn_Close";
|
|
this.btn_Close.Size = new System.Drawing.Size(75, 32);
|
|
this.btn_Close.TabIndex = 50;
|
|
this.btn_Close.Text = "닫 기";
|
|
this.btn_Close.UseVisualStyleBackColor = true;
|
|
this.btn_Close.Click += new System.EventHandler(this.btn_Close_Click);
|
|
//
|
|
// btn_Save
|
|
//
|
|
this.btn_Save.Location = new System.Drawing.Point(570, 4);
|
|
this.btn_Save.Name = "btn_Save";
|
|
this.btn_Save.Size = new System.Drawing.Size(75, 32);
|
|
this.btn_Save.TabIndex = 50;
|
|
this.btn_Save.Text = "체크사항\r\n저장";
|
|
this.btn_Save.UseVisualStyleBackColor = true;
|
|
this.btn_Save.Click += new System.EventHandler(this.btn_Save_Click);
|
|
//
|
|
// Mac_List
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1183, 651);
|
|
this.Controls.Add(this.btn_Close);
|
|
this.Controls.Add(this.btn_Delete);
|
|
this.Controls.Add(this.btn_Progress);
|
|
this.Controls.Add(this.btn_Excel);
|
|
this.Controls.Add(this.btn_Completion);
|
|
this.Controls.Add(this.btn_Merge);
|
|
this.Controls.Add(this.btn_Save);
|
|
this.Controls.Add(this.btn_Lookup);
|
|
this.Controls.Add(this.cb_state);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Controls.Add(this.tb_Search);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "Mac_List";
|
|
this.Text = "마크목록";
|
|
this.Load += new System.EventHandler(this.Mac_List_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox tb_Search;
|
|
private System.Windows.Forms.ComboBox cb_state;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button btn_Lookup;
|
|
private System.Windows.Forms.Button btn_Excel;
|
|
private System.Windows.Forms.Button btn_Merge;
|
|
private System.Windows.Forms.Button btn_Progress;
|
|
private System.Windows.Forms.Button btn_Completion;
|
|
private System.Windows.Forms.Button btn_Delete;
|
|
private System.Windows.Forms.Button btn_Close;
|
|
private System.Windows.Forms.Button btn_Save;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn idx;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn start_date;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn end_date;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn list_marc;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn list_name;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn KDC;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn total;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn flatter;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn unflatter;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn state;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn grade;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn etc;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn charge;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn check;
|
|
public System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
|
|
}
|
|
} |