CEL_Payroll/Payroll.Report/UI/fRewardStatementReport.Designer.cs

155 lines
6.5 KiB
C#
Raw Permalink Normal View History

2024-09-17 14:30:13 +06:00
namespace Payroll.Report
{
partial class fRewardStatementReport
{
/// <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()
{
this.panel1 = new System.Windows.Forms.Panel();
this.ctlEmployee = new Payroll.Controls.CustomControls.ctlEmployee();
this.label1 = new System.Windows.Forms.Label();
this.dtpYear = new System.Windows.Forms.DateTimePicker();
this.label2 = new System.Windows.Forms.Label();
this.btnShow = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.ctlEmployee);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.dtpYear);
this.panel1.Controls.Add(this.label2);
this.panel1.Location = new System.Drawing.Point(11, 12);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(448, 68);
this.panel1.TabIndex = 43;
//
// ctlEmployee
//
this.ctlEmployee.EmployeeNo = "";
this.ctlEmployee.Grades = null;
this.ctlEmployee.Location = new System.Drawing.Point(65, 3);
this.ctlEmployee.Name = "ctlEmployee";
this.ctlEmployee.SelectedEmployee = null;
this.ctlEmployee.Size = new System.Drawing.Size(376, 29);
this.ctlEmployee.TabIndex = 48;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(5, 11);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(56, 13);
this.label1.TabIndex = 47;
this.label1.Text = "Employee:";
//
// dtpYear
//
this.dtpYear.CustomFormat = "yyyy";
this.dtpYear.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpYear.Location = new System.Drawing.Point(70, 38);
this.dtpYear.Name = "dtpYear";
this.dtpYear.Size = new System.Drawing.Size(171, 20);
this.dtpYear.TabIndex = 46;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(29, 42);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(32, 13);
this.label2.TabIndex = 45;
this.label2.Text = "Year:";
//
// btnShow
//
this.btnShow.Location = new System.Drawing.Point(4, 7);
this.btnShow.Name = "btnShow";
this.btnShow.Size = new System.Drawing.Size(74, 28);
this.btnShow.TabIndex = 44;
this.btnShow.Text = "&Show";
this.btnShow.UseVisualStyleBackColor = true;
this.btnShow.Click += new System.EventHandler(this.btnShow_Click);
//
// panel2
//
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnShow);
this.panel2.Location = new System.Drawing.Point(10, 89);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(448, 46);
this.panel2.TabIndex = 45;
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Location = new System.Drawing.Point(368, 7);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(74, 28);
this.btnClose.TabIndex = 44;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.button1_Click);
//
// fRewardStatementReport
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(469, 145);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "fRewardStatementReport";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Reward Statement Report";
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.DateTimePicker dtpYear;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnShow;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Button btnClose;
private Controls.CustomControls.ctlEmployee ctlEmployee;
private System.Windows.Forms.Label label1;
}
}