사용자 목록화면 수정 및 업무일지와 적정인원 체크 박스 추가

This commit is contained in:
chi
2021-01-21 10:22:27 +09:00
parent 445bbe3514
commit d3778387de
57 changed files with 18406 additions and 1632 deletions

View File

@@ -43,6 +43,7 @@
System.Windows.Forms.Label label3;
System.Windows.Forms.Label label4;
System.Windows.Forms.Label label5;
System.Windows.Forms.Label label6;
this.tbId = new System.Windows.Forms.TextBox();
this.tbNameK = new System.Windows.Forms.TextBox();
this.tbDept = new System.Windows.Forms.TextBox();
@@ -60,6 +61,9 @@
this.tbProcess = new System.Windows.Forms.TextBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.tbState = new System.Windows.Forms.TextBox();
this.chkJobReport = new System.Windows.Forms.CheckBox();
this.chkUserSt = new System.Windows.Forms.CheckBox();
idLabel = new System.Windows.Forms.Label();
passwordLabel = new System.Windows.Forms.Label();
nameLabel = new System.Windows.Forms.Label();
@@ -75,6 +79,7 @@
label3 = new System.Windows.Forms.Label();
label4 = new System.Windows.Forms.Label();
label5 = new System.Windows.Forms.Label();
label6 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// idLabel
@@ -197,7 +202,7 @@
// label4
//
label4.AutoSize = true;
label4.Location = new System.Drawing.Point(106, 330);
label4.Location = new System.Drawing.Point(106, 361);
label4.Name = "label4";
label4.Size = new System.Drawing.Size(96, 21);
label4.TabIndex = 27;
@@ -212,6 +217,15 @@
label5.TabIndex = 29;
label5.Text = "공정";
//
// label6
//
label6.AutoSize = true;
label6.Location = new System.Drawing.Point(58, 264);
label6.Name = "label6";
label6.Size = new System.Drawing.Size(42, 21);
label6.TabIndex = 33;
label6.Text = "상태";
//
// tbId
//
this.tbId.Location = new System.Drawing.Point(105, 11);
@@ -278,7 +292,7 @@
//
// button2
//
this.button2.Location = new System.Drawing.Point(105, 264);
this.button2.Location = new System.Drawing.Point(105, 295);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(491, 54);
this.button2.TabIndex = 26;
@@ -309,7 +323,7 @@
//
// tbKJPath
//
this.tbKJPath.Location = new System.Drawing.Point(184, 327);
this.tbKJPath.Location = new System.Drawing.Point(184, 358);
this.tbKJPath.Name = "tbKJPath";
this.tbKJPath.ReadOnly = true;
this.tbKJPath.Size = new System.Drawing.Size(177, 29);
@@ -343,10 +357,42 @@
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// tbState
//
this.tbState.Location = new System.Drawing.Point(105, 260);
this.tbState.Name = "tbState";
this.tbState.Size = new System.Drawing.Size(200, 29);
this.tbState.TabIndex = 34;
//
// chkJobReport
//
this.chkJobReport.AutoSize = true;
this.chkJobReport.Location = new System.Drawing.Point(503, 262);
this.chkJobReport.Name = "chkJobReport";
this.chkJobReport.Size = new System.Drawing.Size(93, 25);
this.chkJobReport.TabIndex = 35;
this.chkJobReport.Text = "업무일지";
this.chkJobReport.UseVisualStyleBackColor = true;
//
// chkUserSt
//
this.chkUserSt.AutoSize = true;
this.chkUserSt.Location = new System.Drawing.Point(407, 262);
this.chkUserSt.Name = "chkUserSt";
this.chkUserSt.Size = new System.Drawing.Size(93, 25);
this.chkUserSt.TabIndex = 36;
this.chkUserSt.Text = "포함인원";
this.chkUserSt.UseVisualStyleBackColor = true;
this.chkUserSt.CheckedChanged += new System.EventHandler(this.chkUserSt_CheckedChanged);
//
// fAddNewUser
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(601, 326);
this.ClientSize = new System.Drawing.Size(601, 355);
this.Controls.Add(this.chkUserSt);
this.Controls.Add(this.chkJobReport);
this.Controls.Add(label6);
this.Controls.Add(this.tbState);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBox1);
this.Controls.Add(label5);
@@ -408,5 +454,8 @@
private System.Windows.Forms.TextBox tbProcess;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox tbState;
private System.Windows.Forms.CheckBox chkJobReport;
private System.Windows.Forms.CheckBox chkUserSt;
}
}