130 lines
5.1 KiB
C#
130 lines
5.1 KiB
C#
namespace Payroll.Controls
|
|
{
|
|
partial class fSerchTraining
|
|
{
|
|
/// <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.lsvTraining = new System.Windows.Forms.ListView();
|
|
this.colName = new System.Windows.Forms.ColumnHeader();
|
|
this.colFromDate = new System.Windows.Forms.ColumnHeader();
|
|
this.colToDate = new System.Windows.Forms.ColumnHeader();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.lsvTraining);
|
|
this.groupBox1.Controls.Add(this.btnCancel);
|
|
this.groupBox1.Controls.Add(this.btnOk);
|
|
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(437, 316);
|
|
this.groupBox1.TabIndex = 1;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Trainings";
|
|
//
|
|
// lsvTraining
|
|
//
|
|
this.lsvTraining.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.colName,
|
|
this.colFromDate,
|
|
this.colToDate});
|
|
this.lsvTraining.FullRowSelect = true;
|
|
this.lsvTraining.GridLines = true;
|
|
this.lsvTraining.Location = new System.Drawing.Point(6, 19);
|
|
this.lsvTraining.Name = "lsvTraining";
|
|
this.lsvTraining.Size = new System.Drawing.Size(425, 259);
|
|
this.lsvTraining.TabIndex = 3;
|
|
this.lsvTraining.UseCompatibleStateImageBehavior = false;
|
|
this.lsvTraining.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// colName
|
|
//
|
|
this.colName.Text = "Name";
|
|
this.colName.Width = 216;
|
|
//
|
|
// colFromDate
|
|
//
|
|
this.colFromDate.Text = "From Date";
|
|
this.colFromDate.Width = 96;
|
|
//
|
|
// colToDate
|
|
//
|
|
this.colToDate.Text = "To Date";
|
|
this.colToDate.Width = 99;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Location = new System.Drawing.Point(356, 284);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 2;
|
|
this.btnCancel.Text = "&Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.Location = new System.Drawing.Point(275, 284);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOk.TabIndex = 1;
|
|
this.btnOk.Text = "&Ok";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// fSerchTraining
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(461, 340);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "fSerchTraining";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "SerchTraining";
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOk;
|
|
private System.Windows.Forms.ListView lsvTraining;
|
|
private System.Windows.Forms.ColumnHeader colName;
|
|
private System.Windows.Forms.ColumnHeader colFromDate;
|
|
private System.Windows.Forms.ColumnHeader colToDate;
|
|
}
|
|
} |