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

161 lines
7.6 KiB
C#
Raw Normal View History

2024-09-17 14:30:13 +06:00
namespace Payroll.Report
{
partial class fLeavereport
{
/// <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.label2 = new System.Windows.Forms.Label();
this.cboLeaveYear = new System.Windows.Forms.ComboBox();
this.lblEmployee = new System.Windows.Forms.Label();
this.btnEmployees = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.btnPreview = 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.label2);
this.panel1.Controls.Add(this.cboLeaveYear);
this.panel1.Controls.Add(this.lblEmployee);
this.panel1.Controls.Add(this.btnEmployees);
this.panel1.Location = new System.Drawing.Point(2, 1);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(329, 113);
this.panel1.TabIndex = 0;
//
// label2
//
this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(3, 75);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(79, 21);
this.label2.TabIndex = 21;
this.label2.Text = "Leave year";
//
// cboLeaveYear
//
this.cboLeaveYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboLeaveYear.FormattingEnabled = true;
this.cboLeaveYear.Location = new System.Drawing.Point(89, 75);
this.cboLeaveYear.Name = "cboLeaveYear";
this.cboLeaveYear.Size = new System.Drawing.Size(227, 21);
this.cboLeaveYear.TabIndex = 20;
//
// lblEmployee
//
this.lblEmployee.BackColor = System.Drawing.Color.Gainsboro;
this.lblEmployee.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblEmployee.Location = new System.Drawing.Point(7, 41);
this.lblEmployee.Name = "lblEmployee";
this.lblEmployee.Size = new System.Drawing.Size(305, 17);
this.lblEmployee.TabIndex = 1;
this.lblEmployee.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// btnEmployees
//
this.btnEmployees.BackColor = System.Drawing.Color.SkyBlue;
this.btnEmployees.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnEmployees.Location = new System.Drawing.Point(5, 5);
this.btnEmployees.Name = "btnEmployees";
this.btnEmployees.Size = new System.Drawing.Size(311, 28);
this.btnEmployees.TabIndex = 0;
this.btnEmployees.Text = "Select Employee";
this.btnEmployees.UseVisualStyleBackColor = false;
this.btnEmployees.Click += new System.EventHandler(this.btnEmployees_Click);
//
// panel2
//
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnPreview);
this.panel2.Location = new System.Drawing.Point(2, 121);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(329, 49);
this.panel2.TabIndex = 1;
//
// btnClose
//
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnClose.Location = new System.Drawing.Point(241, 9);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 31);
this.btnClose.TabIndex = 1;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnPreview
//
this.btnPreview.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnPreview.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPreview.Location = new System.Drawing.Point(150, 9);
this.btnPreview.Name = "btnPreview";
this.btnPreview.Size = new System.Drawing.Size(75, 31);
this.btnPreview.TabIndex = 0;
this.btnPreview.Text = "Preview";
this.btnPreview.UseVisualStyleBackColor = true;
this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
//
// fLeavereport
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(335, 175);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "fLeavereport";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Leave Balance";
this.Load += new System.EventHandler(this.fLeavereport_Load);
this.panel1.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button btnEmployees;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Label lblEmployee;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox cboLeaveYear;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnPreview;
}
}