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

211 lines
9.0 KiB
C#
Raw Permalink Normal View History

2024-09-17 14:30:13 +06:00
namespace Payroll.Report
{
partial class fEmployeeReport
{
/// <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.lsvEmployee = new System.Windows.Forms.ListView();
this.colEmpNo = new System.Windows.Forms.ColumnHeader();
this.colName = new System.Windows.Forms.ColumnHeader();
this.colSalary = new System.Windows.Forms.ColumnHeader();
this.btnSelect = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.btnPreview = new System.Windows.Forms.Button();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.btnRefresh = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.lblSelected = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// lsvEmployee
//
this.lsvEmployee.CheckBoxes = true;
this.lsvEmployee.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.colEmpNo,
this.colName,
this.colSalary});
this.lsvEmployee.FullRowSelect = true;
this.lsvEmployee.GridLines = true;
this.lsvEmployee.Location = new System.Drawing.Point(12, 88);
this.lsvEmployee.Name = "lsvEmployee";
this.lsvEmployee.Size = new System.Drawing.Size(627, 316);
this.lsvEmployee.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.lsvEmployee.TabIndex = 0;
this.lsvEmployee.UseCompatibleStateImageBehavior = false;
this.lsvEmployee.View = System.Windows.Forms.View.Details;
this.lsvEmployee.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lsvEmployee_ColumnClick);
//
// colEmpNo
//
this.colEmpNo.Text = "Employee No";
this.colEmpNo.Width = 120;
//
// colName
//
this.colName.Text = "Name";
this.colName.Width = 200;
//
// colSalary
//
this.colSalary.Text = "Basic Salary";
this.colSalary.Width = 250;
//
// btnSelect
//
this.btnSelect.Location = new System.Drawing.Point(12, 410);
this.btnSelect.Name = "btnSelect";
this.btnSelect.Size = new System.Drawing.Size(75, 27);
this.btnSelect.TabIndex = 1;
this.btnSelect.Text = "&Select All";
this.btnSelect.UseVisualStyleBackColor = true;
this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Location = new System.Drawing.Point(564, 410);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 27);
this.btnClose.TabIndex = 2;
this.btnClose.Text = "&Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnPreview
//
this.btnPreview.Location = new System.Drawing.Point(483, 410);
this.btnPreview.Name = "btnPreview";
this.btnPreview.Size = new System.Drawing.Size(75, 27);
this.btnPreview.TabIndex = 3;
this.btnPreview.Text = "&Preview";
this.btnPreview.UseVisualStyleBackColor = true;
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Location = new System.Drawing.Point(46, 42);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(54, 17);
this.radioButton1.TabIndex = 4;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "Grade";
this.radioButton1.UseVisualStyleBackColor = true;
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Location = new System.Drawing.Point(47, 19);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(36, 17);
this.radioButton2.TabIndex = 4;
this.radioButton2.TabStop = true;
this.radioButton2.Text = "All";
this.radioButton2.UseVisualStyleBackColor = true;
//
// btnRefresh
//
this.btnRefresh.Location = new System.Drawing.Point(564, 54);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(75, 27);
this.btnRefresh.TabIndex = 5;
this.btnRefresh.Text = "&Refresh";
this.btnRefresh.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButton2);
this.groupBox1.Controls.Add(this.radioButton1);
this.groupBox1.Location = new System.Drawing.Point(216, 3);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(188, 73);
this.groupBox1.TabIndex = 6;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Group By";
//
// lblSelected
//
this.lblSelected.AutoSize = true;
this.lblSelected.Location = new System.Drawing.Point(248, 417);
this.lblSelected.Name = "lblSelected";
this.lblSelected.Size = new System.Drawing.Size(13, 13);
this.lblSelected.TabIndex = 7;
this.lblSelected.Text = "0";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(198, 416);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(31, 13);
this.label1.TabIndex = 8;
this.label1.Text = "Total";
//
// fEmployeeReport
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(651, 445);
this.Controls.Add(this.label1);
this.Controls.Add(this.lblSelected);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnRefresh);
this.Controls.Add(this.btnPreview);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnSelect);
this.Controls.Add(this.lsvEmployee);
this.Name = "fEmployeeReport";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Employee Information";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView lsvEmployee;
private System.Windows.Forms.ColumnHeader colEmpNo;
private System.Windows.Forms.ColumnHeader colName;
private System.Windows.Forms.ColumnHeader colSalary;
private System.Windows.Forms.Button btnSelect;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnPreview;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.Button btnRefresh;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label lblSelected;
private System.Windows.Forms.Label label1;
}
}