You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

707 lines
34 KiB

namespace ManagementSystem
{
partial class HRMembers
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HRMembers));
this.dgvHRItem = new System.Windows.Forms.DataGridView();
this.cMemberID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cMemberName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cEMail = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tsButtons = new System.Windows.Forms.ToolStrip();
this.tsbSearch = new System.Windows.Forms.ToolStripButton();
this.tsbAdd = new System.Windows.Forms.ToolStripButton();
this.tsbEdit = new System.Windows.Forms.ToolStripButton();
this.tsbDelete = new System.Windows.Forms.ToolStripButton();
this.tsbSave = new System.Windows.Forms.ToolStripButton();
this.tsbOK = new System.Windows.Forms.ToolStripButton();
this.tsbCancel = new System.Windows.Forms.ToolStripButton();
this.tsbClean = new System.Windows.Forms.ToolStripButton();
this.tsbExit = new System.Windows.Forms.ToolStripButton();
this.label1 = new System.Windows.Forms.Label();
this.txtMemberID = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtMemberName = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtSalary = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtBonus = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.txtSubsidy = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.cbHR_Class = new System.Windows.Forms.ComboBox();
this.label8 = new System.Windows.Forms.Label();
this.txtEffective = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.cbDepartments = new System.Windows.Forms.ComboBox();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.txtSID = new System.Windows.Forms.TextBox();
this.dtpArriveDate = new System.Windows.Forms.DateTimePicker();
this.dtpLeaveDate = new System.Windows.Forms.DateTimePicker();
this.label6 = new System.Windows.Forms.Label();
this.txtC_HealthInsuranceAmount = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.txtS_HealthInsuranceAmount = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.txtC_LaborProtection = new System.Windows.Forms.TextBox();
this.label15 = new System.Windows.Forms.Label();
this.txtS_LaborProtection = new System.Windows.Forms.TextBox();
this.label16 = new System.Windows.Forms.Label();
this.txtRetirementAmount = new System.Windows.Forms.TextBox();
this.label17 = new System.Windows.Forms.Label();
this.txtInsuranceLevel = new System.Windows.Forms.TextBox();
this.label18 = new System.Windows.Forms.Label();
this.cbCountSalary = new System.Windows.Forms.CheckBox();
this.label19 = new System.Windows.Forms.Label();
this.txtInsuranceSalary = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.dgvHRItem)).BeginInit();
this.tsButtons.SuspendLayout();
this.SuspendLayout();
//
// dgvHRItem
//
this.dgvHRItem.AllowUserToAddRows = false;
this.dgvHRItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.dgvHRItem.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvHRItem.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.cMemberID,
this.cMemberName,
this.cEMail});
this.dgvHRItem.Location = new System.Drawing.Point(0, 39);
this.dgvHRItem.Margin = new System.Windows.Forms.Padding(5);
this.dgvHRItem.Name = "dgvHRItem";
this.dgvHRItem.ReadOnly = true;
this.dgvHRItem.RowTemplate.Height = 24;
this.dgvHRItem.Size = new System.Drawing.Size(648, 720);
this.dgvHRItem.TabIndex = 0;
this.dgvHRItem.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvHRItem_CellClick);
this.dgvHRItem.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvHRItem_CellEnter);
//
// cMemberID
//
this.cMemberID.DataPropertyName = "MemberID";
this.cMemberID.HeaderText = "人員帳號";
this.cMemberID.Name = "cMemberID";
this.cMemberID.ReadOnly = true;
this.cMemberID.Width = 150;
//
// cMemberName
//
this.cMemberName.DataPropertyName = "MemberName";
this.cMemberName.HeaderText = "人員姓名";
this.cMemberName.Name = "cMemberName";
this.cMemberName.ReadOnly = true;
this.cMemberName.Width = 150;
//
// cEMail
//
this.cEMail.DataPropertyName = "EMail";
this.cEMail.HeaderText = "E-Mail";
this.cEMail.Name = "cEMail";
this.cEMail.ReadOnly = true;
this.cEMail.Width = 300;
//
// tsButtons
//
this.tsButtons.ImageScalingSize = new System.Drawing.Size(25, 25);
this.tsButtons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsbSearch,
this.tsbAdd,
this.tsbEdit,
this.tsbDelete,
this.tsbSave,
this.tsbOK,
this.tsbCancel,
this.tsbClean,
this.tsbExit});
this.tsButtons.Location = new System.Drawing.Point(0, 0);
this.tsButtons.Name = "tsButtons";
this.tsButtons.Size = new System.Drawing.Size(1477, 32);
this.tsButtons.TabIndex = 4;
this.tsButtons.Text = "功能按鈕表";
//
// tsbSearch
//
this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tsbSearch.Image")));
this.tsbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbSearch.Name = "tsbSearch";
this.tsbSearch.Size = new System.Drawing.Size(29, 29);
this.tsbSearch.Text = "搜尋";
this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
//
// tsbAdd
//
this.tsbAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbAdd.Image")));
this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbAdd.Name = "tsbAdd";
this.tsbAdd.Size = new System.Drawing.Size(29, 29);
this.tsbAdd.Text = "新增";
this.tsbAdd.Visible = false;
this.tsbAdd.Click += new System.EventHandler(this.tsbAdd_Click);
//
// tsbEdit
//
this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbEdit.Name = "tsbEdit";
this.tsbEdit.Size = new System.Drawing.Size(29, 29);
this.tsbEdit.Text = "修改";
this.tsbEdit.Click += new System.EventHandler(this.tsbEdit_Click);
//
// tsbDelete
//
this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbDelete.Name = "tsbDelete";
this.tsbDelete.Size = new System.Drawing.Size(29, 29);
this.tsbDelete.Text = "刪除";
this.tsbDelete.Click += new System.EventHandler(this.tsbDelete_Click);
//
// tsbSave
//
this.tsbSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbSave.Name = "tsbSave";
this.tsbSave.Size = new System.Drawing.Size(29, 29);
this.tsbSave.Text = "儲存";
this.tsbSave.Visible = false;
this.tsbSave.Click += new System.EventHandler(this.tsbSave_Click);
//
// tsbOK
//
this.tsbOK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbOK.Image = ((System.Drawing.Image)(resources.GetObject("tsbOK.Image")));
this.tsbOK.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbOK.Name = "tsbOK";
this.tsbOK.Size = new System.Drawing.Size(29, 29);
this.tsbOK.Text = "確認";
this.tsbOK.Visible = false;
this.tsbOK.Click += new System.EventHandler(this.tsbOK_Click);
//
// tsbCancel
//
this.tsbCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsbCancel.Image")));
this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbCancel.Name = "tsbCancel";
this.tsbCancel.Size = new System.Drawing.Size(29, 29);
this.tsbCancel.Text = "取消";
this.tsbCancel.Visible = false;
this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
//
// tsbClean
//
this.tsbClean.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbClean.Image = ((System.Drawing.Image)(resources.GetObject("tsbClean.Image")));
this.tsbClean.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbClean.Name = "tsbClean";
this.tsbClean.Size = new System.Drawing.Size(29, 29);
this.tsbClean.Text = "清除";
this.tsbClean.Visible = false;
this.tsbClean.Click += new System.EventHandler(this.tsbClean_Click);
//
// tsbExit
//
this.tsbExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbExit.Image = ((System.Drawing.Image)(resources.GetObject("tsbExit.Image")));
this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbExit.Name = "tsbExit";
this.tsbExit.Size = new System.Drawing.Size(29, 29);
this.tsbExit.Text = "離開";
this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(683, 42);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(89, 20);
this.label1.TabIndex = 5;
this.label1.Text = "人員帳號:";
//
// txtMemberID
//
this.txtMemberID.Location = new System.Drawing.Point(778, 39);
this.txtMemberID.Name = "txtMemberID";
this.txtMemberID.Size = new System.Drawing.Size(205, 29);
this.txtMemberID.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(683, 77);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 20);
this.label2.TabIndex = 5;
this.label2.Text = "人員姓名:";
//
// txtMemberName
//
this.txtMemberName.Location = new System.Drawing.Point(778, 74);
this.txtMemberName.Name = "txtMemberName";
this.txtMemberName.ReadOnly = true;
this.txtMemberName.Size = new System.Drawing.Size(205, 29);
this.txtMemberName.TabIndex = 3;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(683, 146);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(89, 20);
this.label3.TabIndex = 5;
this.label3.Text = "薪 資:";
//
// txtSalary
//
this.txtSalary.Location = new System.Drawing.Point(778, 143);
this.txtSalary.Name = "txtSalary";
this.txtSalary.Size = new System.Drawing.Size(205, 29);
this.txtSalary.TabIndex = 6;
this.txtSalary.Text = "0";
this.txtSalary.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.txtSalary.Enter += new System.EventHandler(this.txtSalary_Enter);
this.txtSalary.Leave += new System.EventHandler(this.txtSalary_Leave);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(683, 181);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(89, 20);
this.label4.TabIndex = 5;
this.label4.Text = "獎 金:";
//
// txtBonus
//
this.txtBonus.Location = new System.Drawing.Point(778, 178);
this.txtBonus.Name = "txtBonus";
this.txtBonus.Size = new System.Drawing.Size(205, 29);
this.txtBonus.TabIndex = 8;
this.txtBonus.Text = "0";
this.txtBonus.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.txtBonus.Enter += new System.EventHandler(this.txtBonus_Enter);
this.txtBonus.Leave += new System.EventHandler(this.txtBonus_Leave);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(683, 216);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(89, 20);
this.label5.TabIndex = 5;
this.label5.Text = "津 貼:";
//
// txtSubsidy
//
this.txtSubsidy.Location = new System.Drawing.Point(778, 213);
this.txtSubsidy.Name = "txtSubsidy";
this.txtSubsidy.Size = new System.Drawing.Size(205, 29);
this.txtSubsidy.TabIndex = 9;
this.txtSubsidy.Text = "0";
this.txtSubsidy.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.txtSubsidy.Enter += new System.EventHandler(this.txtSubsidy_Enter);
this.txtSubsidy.Leave += new System.EventHandler(this.txtSubsidy_Leave);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(683, 250);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(89, 20);
this.label7.TabIndex = 5;
this.label7.Text = "人事類別:";
//
// cbHR_Class
//
this.cbHR_Class.Enabled = false;
this.cbHR_Class.FormattingEnabled = true;
this.cbHR_Class.Location = new System.Drawing.Point(778, 247);
this.cbHR_Class.Name = "cbHR_Class";
this.cbHR_Class.Size = new System.Drawing.Size(205, 28);
this.cbHR_Class.TabIndex = 10;
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(683, 284);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(89, 20);
this.label8.TabIndex = 5;
this.label8.Text = "在職狀態:";
//
// txtEffective
//
this.txtEffective.Location = new System.Drawing.Point(778, 281);
this.txtEffective.Name = "txtEffective";
this.txtEffective.ReadOnly = true;
this.txtEffective.Size = new System.Drawing.Size(205, 29);
this.txtEffective.TabIndex = 11;
this.txtEffective.Leave += new System.EventHandler(this.txtEffective_Leave);
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(683, 530);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(89, 20);
this.label9.TabIndex = 5;
this.label9.Text = "在職期間:";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(989, 524);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(21, 20);
this.label10.TabIndex = 5;
this.label10.Text = "~";
//
// cbDepartments
//
this.cbDepartments.Enabled = false;
this.cbDepartments.FormattingEnabled = true;
this.cbDepartments.Location = new System.Drawing.Point(778, 109);
this.cbDepartments.Name = "cbDepartments";
this.cbDepartments.Size = new System.Drawing.Size(550, 28);
this.cbDepartments.TabIndex = 5;
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(683, 112);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(89, 20);
this.label12.TabIndex = 5;
this.label12.Text = "所屬部門:";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(1012, 45);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(105, 20);
this.label13.TabIndex = 5;
this.label13.Text = "身份證字號:";
//
// txtSID
//
this.txtSID.Location = new System.Drawing.Point(1123, 39);
this.txtSID.MaxLength = 10;
this.txtSID.Name = "txtSID";
this.txtSID.Size = new System.Drawing.Size(205, 29);
this.txtSID.TabIndex = 2;
this.txtSID.Leave += new System.EventHandler(this.txtSID_Leave);
//
// dtpArriveDate
//
this.dtpArriveDate.Location = new System.Drawing.Point(778, 524);
this.dtpArriveDate.Name = "dtpArriveDate";
this.dtpArriveDate.Size = new System.Drawing.Size(205, 29);
this.dtpArriveDate.TabIndex = 18;
//
// dtpLeaveDate
//
this.dtpLeaveDate.Location = new System.Drawing.Point(1016, 524);
this.dtpLeaveDate.Name = "dtpLeaveDate";
this.dtpLeaveDate.Size = new System.Drawing.Size(205, 29);
this.dtpLeaveDate.TabIndex = 19;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(667, 352);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(105, 20);
this.label6.TabIndex = 5;
this.label6.Text = "公提健保費:";
//
// txtC_HealthInsuranceAmount
//
this.txtC_HealthInsuranceAmount.Location = new System.Drawing.Point(778, 349);
this.txtC_HealthInsuranceAmount.Name = "txtC_HealthInsuranceAmount";
this.txtC_HealthInsuranceAmount.ReadOnly = true;
this.txtC_HealthInsuranceAmount.Size = new System.Drawing.Size(205, 29);
this.txtC_HealthInsuranceAmount.TabIndex = 13;
this.txtC_HealthInsuranceAmount.Text = "0";
this.txtC_HealthInsuranceAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(667, 387);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(105, 20);
this.label11.TabIndex = 5;
this.label11.Text = "自提健保費:";
//
// txtS_HealthInsuranceAmount
//
this.txtS_HealthInsuranceAmount.Location = new System.Drawing.Point(778, 384);
this.txtS_HealthInsuranceAmount.Name = "txtS_HealthInsuranceAmount";
this.txtS_HealthInsuranceAmount.ReadOnly = true;
this.txtS_HealthInsuranceAmount.Size = new System.Drawing.Size(205, 29);
this.txtS_HealthInsuranceAmount.TabIndex = 14;
this.txtS_HealthInsuranceAmount.Text = "0";
this.txtS_HealthInsuranceAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(667, 422);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(105, 20);
this.label14.TabIndex = 5;
this.label14.Text = "公提勞保費:";
//
// txtC_LaborProtection
//
this.txtC_LaborProtection.Location = new System.Drawing.Point(778, 419);
this.txtC_LaborProtection.Name = "txtC_LaborProtection";
this.txtC_LaborProtection.ReadOnly = true;
this.txtC_LaborProtection.Size = new System.Drawing.Size(205, 29);
this.txtC_LaborProtection.TabIndex = 15;
this.txtC_LaborProtection.Text = "0";
this.txtC_LaborProtection.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(667, 457);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(105, 20);
this.label15.TabIndex = 5;
this.label15.Text = "自提勞保費:";
//
// txtS_LaborProtection
//
this.txtS_LaborProtection.Location = new System.Drawing.Point(778, 454);
this.txtS_LaborProtection.Name = "txtS_LaborProtection";
this.txtS_LaborProtection.ReadOnly = true;
this.txtS_LaborProtection.Size = new System.Drawing.Size(205, 29);
this.txtS_LaborProtection.TabIndex = 16;
this.txtS_LaborProtection.Text = "0";
this.txtS_LaborProtection.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(683, 492);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(89, 20);
this.label16.TabIndex = 5;
this.label16.Text = "勞退費用:";
//
// txtRetirementAmount
//
this.txtRetirementAmount.Location = new System.Drawing.Point(778, 489);
this.txtRetirementAmount.Name = "txtRetirementAmount";
this.txtRetirementAmount.ReadOnly = true;
this.txtRetirementAmount.Size = new System.Drawing.Size(205, 29);
this.txtRetirementAmount.TabIndex = 17;
this.txtRetirementAmount.Text = "0";
this.txtRetirementAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label17
//
this.label17.AutoSize = true;
this.label17.Location = new System.Drawing.Point(683, 317);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(89, 20);
this.label17.TabIndex = 5;
this.label17.Text = "投保級距:";
//
// txtInsuranceLevel
//
this.txtInsuranceLevel.Location = new System.Drawing.Point(778, 314);
this.txtInsuranceLevel.Name = "txtInsuranceLevel";
this.txtInsuranceLevel.Size = new System.Drawing.Size(205, 29);
this.txtInsuranceLevel.TabIndex = 12;
this.txtInsuranceLevel.Text = "0";
this.txtInsuranceLevel.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label18
//
this.label18.AutoSize = true;
this.label18.Location = new System.Drawing.Point(1028, 77);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(89, 20);
this.label18.TabIndex = 5;
this.label18.Text = "計算薪資:";
//
// cbCountSalary
//
this.cbCountSalary.AutoSize = true;
this.cbCountSalary.Location = new System.Drawing.Point(1123, 81);
this.cbCountSalary.Name = "cbCountSalary";
this.cbCountSalary.Size = new System.Drawing.Size(15, 14);
this.cbCountSalary.TabIndex = 4;
this.cbCountSalary.UseVisualStyleBackColor = true;
//
// label19
//
this.label19.AutoSize = true;
this.label19.Location = new System.Drawing.Point(1028, 146);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(89, 20);
this.label19.TabIndex = 5;
this.label19.Text = "投保金額:";
//
// txtInsuranceSalary
//
this.txtInsuranceSalary.Location = new System.Drawing.Point(1123, 143);
this.txtInsuranceSalary.Name = "txtInsuranceSalary";
this.txtInsuranceSalary.Size = new System.Drawing.Size(205, 29);
this.txtInsuranceSalary.TabIndex = 7;
this.txtInsuranceSalary.Text = "0";
this.txtInsuranceSalary.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.txtInsuranceSalary.Enter += new System.EventHandler(this.txtInsuranceSalary_Enter);
this.txtInsuranceSalary.Leave += new System.EventHandler(this.txtInsuranceSalary_Leave);
//
// HRMembers
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1477, 762);
this.Controls.Add(this.cbCountSalary);
this.Controls.Add(this.dtpLeaveDate);
this.Controls.Add(this.dtpArriveDate);
this.Controls.Add(this.cbDepartments);
this.Controls.Add(this.cbHR_Class);
this.Controls.Add(this.txtEffective);
this.Controls.Add(this.txtMemberName);
this.Controls.Add(this.label12);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtSubsidy);
this.Controls.Add(this.label10);
this.Controls.Add(this.label9);
this.Controls.Add(this.label8);
this.Controls.Add(this.label7);
this.Controls.Add(this.label5);
this.Controls.Add(this.txtBonus);
this.Controls.Add(this.label4);
this.Controls.Add(this.txtS_HealthInsuranceAmount);
this.Controls.Add(this.label11);
this.Controls.Add(this.txtRetirementAmount);
this.Controls.Add(this.label16);
this.Controls.Add(this.txtS_LaborProtection);
this.Controls.Add(this.label15);
this.Controls.Add(this.txtC_LaborProtection);
this.Controls.Add(this.label14);
this.Controls.Add(this.txtInsuranceLevel);
this.Controls.Add(this.txtC_HealthInsuranceAmount);
this.Controls.Add(this.label17);
this.Controls.Add(this.label6);
this.Controls.Add(this.txtInsuranceSalary);
this.Controls.Add(this.txtSalary);
this.Controls.Add(this.label19);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtSID);
this.Controls.Add(this.txtMemberID);
this.Controls.Add(this.label18);
this.Controls.Add(this.label13);
this.Controls.Add(this.label1);
this.Controls.Add(this.tsButtons);
this.Controls.Add(this.dgvHRItem);
this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.Margin = new System.Windows.Forms.Padding(5);
this.Name = "HRMembers";
this.Text = "人事基本資料檔";
this.Load += new System.EventHandler(this.HRMembers_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvHRItem)).EndInit();
this.tsButtons.ResumeLayout(false);
this.tsButtons.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView dgvHRItem;
private System.Windows.Forms.ToolStrip tsButtons;
private System.Windows.Forms.ToolStripButton tsbSave;
private System.Windows.Forms.ToolStripButton tsbAdd;
private System.Windows.Forms.ToolStripButton tsbDelete;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtMemberID;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtMemberName;
private System.Windows.Forms.ToolStripButton tsbSearch;
private System.Windows.Forms.ToolStripButton tsbOK;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtSalary;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtBonus;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtSubsidy;
private System.Windows.Forms.ToolStripButton tsbEdit;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.ComboBox cbHR_Class;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox txtEffective;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.ComboBox cbDepartments;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.TextBox txtSID;
private System.Windows.Forms.ToolStripButton tsbCancel;
private System.Windows.Forms.DateTimePicker dtpArriveDate;
private System.Windows.Forms.DateTimePicker dtpLeaveDate;
private System.Windows.Forms.DataGridViewTextBoxColumn cMemberID;
private System.Windows.Forms.DataGridViewTextBoxColumn cMemberName;
private System.Windows.Forms.DataGridViewTextBoxColumn cEMail;
private System.Windows.Forms.ToolStripButton tsbExit;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox txtC_HealthInsuranceAmount;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.TextBox txtS_HealthInsuranceAmount;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.TextBox txtC_LaborProtection;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.TextBox txtS_LaborProtection;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.TextBox txtRetirementAmount;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.TextBox txtInsuranceLevel;
private System.Windows.Forms.ToolStripButton tsbClean;
private System.Windows.Forms.Label label18;
private System.Windows.Forms.CheckBox cbCountSalary;
private System.Windows.Forms.Label label19;
private System.Windows.Forms.TextBox txtInsuranceSalary;
}
}