문자편집기 창 별도 추가했음,

휴가내역 정렬 수정
This commit is contained in:
chi
2020-06-05 13:10:14 +09:00
parent a844e35d0b
commit bd442b73a8
20 changed files with 2697 additions and 1198 deletions

View File

@@ -42,6 +42,8 @@
this.cmbUser = new System.Windows.Forms.ComboBox();
this.btOK = new System.Windows.Forms.Button();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.radNormall = new System.Windows.Forms.RadioButton();
this.radEtc = new System.Windows.Forms.RadioButton();
sdateLabel = new System.Windows.Forms.Label();
contentsLabel = new System.Windows.Forms.Label();
uidLabel = new System.Windows.Forms.Label();
@@ -135,7 +137,7 @@
this.dateTimePicker1.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.bs, "sdate", true));
this.dateTimePicker1.Location = new System.Drawing.Point(87, 45);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(422, 27);
this.dateTimePicker1.Size = new System.Drawing.Size(300, 27);
this.dateTimePicker1.TabIndex = 3;
this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
//
@@ -174,11 +176,35 @@
this.numericUpDown1.TabIndex = 7;
this.numericUpDown1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// radNormall
//
this.radNormall.AutoSize = true;
this.radNormall.Checked = true;
this.radNormall.Location = new System.Drawing.Point(393, 47);
this.radNormall.Name = "radNormall";
this.radNormall.Size = new System.Drawing.Size(55, 23);
this.radNormall.TabIndex = 9;
this.radNormall.TabStop = true;
this.radNormall.Text = "일반";
this.radNormall.UseVisualStyleBackColor = true;
//
// radEtc
//
this.radEtc.AutoSize = true;
this.radEtc.Location = new System.Drawing.Point(454, 47);
this.radEtc.Name = "radEtc";
this.radEtc.Size = new System.Drawing.Size(55, 23);
this.radEtc.TabIndex = 10;
this.radEtc.Text = "기타";
this.radEtc.UseVisualStyleBackColor = true;
//
// fHolyday_Add
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(523, 340);
this.Controls.Add(this.radEtc);
this.Controls.Add(this.radNormall);
this.Controls.Add(this.numericUpDown1);
this.Controls.Add(label1);
this.Controls.Add(this.btOK);
@@ -192,7 +218,7 @@
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MinimizeBox = false;
this.Name = "fHolyday_Add";
this.Text = "휴가 등록";
this.Text = "휴가 발생 등록";
this.TopMost = true;
this.Load += new System.EventHandler(this.@__Load);
((System.ComponentModel.ISupportInitialize)(this.dsMSSQL)).EndInit();
@@ -214,5 +240,7 @@
private System.Windows.Forms.ComboBox cmbUser;
private System.Windows.Forms.Button btOK;
private System.Windows.Forms.NumericUpDown numericUpDown1;
private System.Windows.Forms.RadioButton radNormall;
private System.Windows.Forms.RadioButton radEtc;
}
}