CEL_Payroll/Payroll.Controls/CustomControls/fOrg.Designer.cs

195 lines
8.2 KiB
C#
Raw Normal View History

2024-09-17 14:30:13 +06:00
namespace Payroll.Controls
{
partial class fOrg
{
/// <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.btnOk = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.trvOrg = new System.Windows.Forms.TreeView();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.panel3 = new System.Windows.Forms.Panel();
this.txtID = new System.Windows.Forms.TextBox();
this.btnSearch = new System.Windows.Forms.Button();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.panel3.SuspendLayout();
this.SuspendLayout();
//
// btnOk
//
this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnOk.Location = new System.Drawing.Point(245, 6);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(75, 30);
this.btnOk.TabIndex = 0;
this.btnOk.Text = "OK";
this.btnOk.UseVisualStyleBackColor = true;
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.trvOrg);
this.panel1.Location = new System.Drawing.Point(12, 61);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(413, 344);
this.panel1.TabIndex = 1;
//
// trvOrg
//
this.trvOrg.CheckBoxes = true;
this.trvOrg.Location = new System.Drawing.Point(5, 7);
this.trvOrg.Name = "trvOrg";
this.trvOrg.Size = new System.Drawing.Size(400, 328);
this.trvOrg.TabIndex = 3;
this.trvOrg.DoubleClick += new System.EventHandler(this.trvOrg_DoubleClick);
this.trvOrg.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.trvOrg_AfterSelect);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(67, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Employee ID";
//
// panel2
//
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel2.Controls.Add(this.label11);
this.panel2.Controls.Add(this.label10);
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOk);
this.panel2.Location = new System.Drawing.Point(12, 411);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(413, 43);
this.panel2.TabIndex = 1;
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnClose.Location = new System.Drawing.Point(326, 6);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 30);
this.btnClose.TabIndex = 0;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// panel3
//
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel3.Controls.Add(this.txtID);
this.panel3.Controls.Add(this.label1);
this.panel3.Controls.Add(this.btnSearch);
this.panel3.Location = new System.Drawing.Point(12, 12);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(413, 43);
this.panel3.TabIndex = 1;
//
// txtID
//
this.txtID.Location = new System.Drawing.Point(74, 9);
this.txtID.Name = "txtID";
this.txtID.Size = new System.Drawing.Size(229, 20);
this.txtID.TabIndex = 4;
//
// btnSearch
//
this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSearch.Location = new System.Drawing.Point(328, 9);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(75, 23);
this.btnSearch.TabIndex = 0;
this.btnSearch.Text = "Search";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(38, 14);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(70, 13);
this.label11.TabIndex = 3;
this.label11.Text = "Vacant Node";
//
// label10
//
this.label10.BackColor = System.Drawing.Color.Red;
this.label10.Location = new System.Drawing.Point(6, 12);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(20, 16);
this.label10.TabIndex = 2;
//
// fOrg
//
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(438, 463);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "fOrg";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Search Position";
this.Load += new System.EventHandler(this.fOrg_Load);
this.panel1.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.TreeView trvOrg;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.TextBox txtID;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label label10;
}
}