CEL_Payroll/Payroll.Controls/CustomControls/frmSkillLevelList.Designer.cs
2024-09-17 14:30:13 +06:00

348 lines
16 KiB
C#

namespace Payroll.Controls
{
partial class frmSkillLevelList
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnSearch = new System.Windows.Forms.Button();
this.comboBox2 = new System.Windows.Forms.ComboBox();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.colSelect = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.lvwSkills = new System.Windows.Forms.ListView();
this.colSkillPoint = new System.Windows.Forms.ColumnHeader();
this.colSkillArea = new System.Windows.Forms.ColumnHeader();
this.colSubSkillArea = new System.Windows.Forms.ColumnHeader();
this.colSkillLevel = new System.Windows.Forms.ColumnHeader();
this.btnAddSkills = new System.Windows.Forms.Button();
this.btnRemoveSkills = new System.Windows.Forms.Button();
this.btnOk = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnSearch);
this.groupBox1.Controls.Add(this.comboBox2);
this.groupBox1.Controls.Add(this.comboBox1);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(7, 7);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(545, 77);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Search Skill";
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(465, 47);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(75, 23);
this.btnSearch.TabIndex = 4;
this.btnSearch.Text = "&Search";
this.btnSearch.UseVisualStyleBackColor = true;
//
// comboBox2
//
this.comboBox2.FormattingEnabled = true;
this.comboBox2.Location = new System.Drawing.Point(104, 48);
this.comboBox2.Name = "comboBox2";
this.comboBox2.Size = new System.Drawing.Size(329, 21);
this.comboBox2.TabIndex = 3;
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(104, 20);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(434, 21);
this.comboBox1.TabIndex = 2;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(16, 52);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(73, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Sub Skill Area";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(16, 24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(51, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Skill Area";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.dataGridView1);
this.groupBox2.Location = new System.Drawing.Point(7, 89);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(545, 192);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Skill List";
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.colSelect,
this.Column1,
this.Column2,
this.Column3,
this.Column4});
this.dataGridView1.Location = new System.Drawing.Point(7, 19);
this.dataGridView1.MultiSelect = false;
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowHeadersVisible = false;
this.dataGridView1.Size = new System.Drawing.Size(532, 166);
this.dataGridView1.TabIndex = 0;
//
// colSelect
//
this.colSelect.HeaderText = "Select";
this.colSelect.Name = "colSelect";
this.colSelect.Width = 50;
//
// Column1
//
this.Column1.HeaderText = "Skill Point";
this.Column1.Name = "Column1";
this.Column1.ReadOnly = true;
this.Column1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.Column1.Width = 150;
//
// Column2
//
this.Column2.HeaderText = "Sub Skill Area";
this.Column2.Name = "Column2";
this.Column2.ReadOnly = true;
this.Column2.Width = 145;
//
// Column3
//
this.Column3.HeaderText = "Skill Area";
this.Column3.Name = "Column3";
this.Column3.ReadOnly = true;
this.Column3.Width = 110;
//
// Column4
//
this.Column4.HeaderText = "Skill Level";
this.Column4.Name = "Column4";
this.Column4.Width = 70;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.lvwSkills);
this.groupBox3.Location = new System.Drawing.Point(7, 311);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(545, 177);
this.groupBox3.TabIndex = 1;
this.groupBox3.TabStop = false;
//
// lvwSkills
//
this.lvwSkills.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.colSkillPoint,
this.colSkillArea,
this.colSubSkillArea,
this.colSkillLevel});
this.lvwSkills.GridLines = true;
this.lvwSkills.Location = new System.Drawing.Point(4, 13);
this.lvwSkills.Name = "lvwSkills";
this.lvwSkills.Size = new System.Drawing.Size(532, 157);
this.lvwSkills.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.lvwSkills.TabIndex = 0;
this.lvwSkills.UseCompatibleStateImageBehavior = false;
this.lvwSkills.View = System.Windows.Forms.View.Details;
this.lvwSkills.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvwSkills_ColumnClick);
//
// colSkillPoint
//
this.colSkillPoint.Text = "Skill Point";
this.colSkillPoint.Width = 150;
//
// colSkillArea
//
this.colSkillArea.Text = "Skill Area";
this.colSkillArea.Width = 150;
//
// colSubSkillArea
//
this.colSubSkillArea.Text = "Sub Skill Area";
this.colSubSkillArea.Width = 110;
//
// colSkillLevel
//
this.colSkillLevel.Text = "Skill Level";
this.colSkillLevel.Width = 110;
//
// btnAddSkills
//
this.btnAddSkills.Location = new System.Drawing.Point(358, 285);
this.btnAddSkills.Name = "btnAddSkills";
this.btnAddSkills.Size = new System.Drawing.Size(90, 23);
this.btnAddSkills.TabIndex = 2;
this.btnAddSkills.Text = "Add Skills";
this.btnAddSkills.UseVisualStyleBackColor = true;
//
// btnRemoveSkills
//
this.btnRemoveSkills.Location = new System.Drawing.Point(456, 285);
this.btnRemoveSkills.Name = "btnRemoveSkills";
this.btnRemoveSkills.Size = new System.Drawing.Size(90, 23);
this.btnRemoveSkills.TabIndex = 3;
this.btnRemoveSkills.Text = "Remove Skills";
this.btnRemoveSkills.UseVisualStyleBackColor = true;
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(389, 493);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(75, 23);
this.btnOk.TabIndex = 4;
this.btnOk.Text = "Ok";
this.btnOk.UseVisualStyleBackColor = true;
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(470, 493);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.HeaderText = "Skill Point";
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
this.dataGridViewTextBoxColumn1.ReadOnly = true;
this.dataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.dataGridViewTextBoxColumn1.Width = 150;
//
// dataGridViewTextBoxColumn2
//
this.dataGridViewTextBoxColumn2.HeaderText = "Sub Skill Area";
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
this.dataGridViewTextBoxColumn2.ReadOnly = true;
this.dataGridViewTextBoxColumn2.Width = 145;
//
// dataGridViewTextBoxColumn3
//
this.dataGridViewTextBoxColumn3.HeaderText = "Skill Area";
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
this.dataGridViewTextBoxColumn3.ReadOnly = true;
this.dataGridViewTextBoxColumn3.Width = 110;
//
// dataGridViewTextBoxColumn4
//
this.dataGridViewTextBoxColumn4.HeaderText = "Skill Level";
this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
this.dataGridViewTextBoxColumn4.Width = 70;
//
// frmSkillLevelList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(558, 522);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOk);
this.Controls.Add(this.btnRemoveSkills);
this.Controls.Add(this.btnAddSkills);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox1);
this.Name = "frmSkillLevelList";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Skills";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.groupBox3.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ComboBox comboBox2;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.ListView lvwSkills;
private System.Windows.Forms.Button btnAddSkills;
private System.Windows.Forms.Button btnRemoveSkills;
private System.Windows.Forms.ColumnHeader colSkillPoint;
private System.Windows.Forms.ColumnHeader colSkillArea;
private System.Windows.Forms.DataGridViewCheckBoxColumn colSelect;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
private System.Windows.Forms.ColumnHeader colSubSkillArea;
private System.Windows.Forms.ColumnHeader colSkillLevel;
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
}
}