CEL_Payroll/Payroll.Controls/frmGradePicker.Designer.cs

169 lines
7.1 KiB
C#
Raw Normal View History

2024-09-17 14:30:13 +06:00
namespace Payroll.Controls
{
partial class frmGradePicker
{
/// <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.lsvGrade = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
this.label1 = new System.Windows.Forms.Label();
this.btnOk = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.lsvSlabs = new System.Windows.Forms.ListView();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
this.SuspendLayout();
//
// lsvGrade
//
this.lsvGrade.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.lsvGrade.FullRowSelect = true;
this.lsvGrade.GridLines = true;
this.lsvGrade.Location = new System.Drawing.Point(12, 25);
this.lsvGrade.Name = "lsvGrade";
this.lsvGrade.Size = new System.Drawing.Size(334, 137);
this.lsvGrade.TabIndex = 0;
this.lsvGrade.UseCompatibleStateImageBehavior = false;
this.lsvGrade.View = System.Windows.Forms.View.Details;
this.lsvGrade.Click += new System.EventHandler(this.lsvGrade_Click);
//
// columnHeader1
//
this.columnHeader1.Text = "Code";
this.columnHeader1.Width = 100;
//
// columnHeader3
//
this.columnHeader3.Text = "Description";
this.columnHeader3.Width = 190;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(47, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Grades";
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(204, 322);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(67, 30);
this.btnOk.TabIndex = 2;
this.btnOk.Text = "OK";
this.btnOk.UseVisualStyleBackColor = true;
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(279, 322);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(67, 30);
this.btnClose.TabIndex = 2;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// label2
//
this.label2.AutoSize = true;
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(12, 169);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(38, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Slabs";
//
// lsvSlabs
//
this.lsvSlabs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader4});
this.lsvSlabs.FullRowSelect = true;
this.lsvSlabs.GridLines = true;
this.lsvSlabs.Location = new System.Drawing.Point(12, 187);
this.lsvSlabs.Name = "lsvSlabs";
this.lsvSlabs.Size = new System.Drawing.Size(334, 128);
this.lsvSlabs.TabIndex = 3;
this.lsvSlabs.UseCompatibleStateImageBehavior = false;
this.lsvSlabs.View = System.Windows.Forms.View.Details;
//
// columnHeader2
//
this.columnHeader2.Text = "Code";
this.columnHeader2.Width = 120;
//
// columnHeader4
//
this.columnHeader4.Text = "Amount";
this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.columnHeader4.Width = 180;
//
// frmGradePicker
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(355, 358);
this.Controls.Add(this.lsvSlabs);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnOk);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.lsvGrade);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmGradePicker";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Grade Slab Picker";
this.Load += new System.EventHandler(this.frmGradePicker_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView lsvGrade;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ListView lsvSlabs;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader4;
}
}