89 lines
3.6 KiB
C#
89 lines
3.6 KiB
C#
namespace Payroll.Controls.CustomControls
|
|
{
|
|
partial class ctlEmployee
|
|
{
|
|
/// <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 Component 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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ctlEmployee));
|
|
this.txtDescription = new System.Windows.Forms.TextBox();
|
|
this.txtCode = new System.Windows.Forms.TextBox();
|
|
this.btnPeek = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// txtDescription
|
|
//
|
|
this.txtDescription.BackColor = System.Drawing.SystemColors.ControlLightLight;
|
|
this.txtDescription.Location = new System.Drawing.Point(146, 4);
|
|
this.txtDescription.Name = "txtDescription";
|
|
this.txtDescription.ReadOnly = true;
|
|
this.txtDescription.Size = new System.Drawing.Size(293, 20);
|
|
this.txtDescription.TabIndex = 2;
|
|
this.txtDescription.TabStop = false;
|
|
//
|
|
// txtCode
|
|
//
|
|
this.txtCode.Location = new System.Drawing.Point(5, 5);
|
|
this.txtCode.Name = "txtCode";
|
|
this.txtCode.Size = new System.Drawing.Size(106, 20);
|
|
this.txtCode.TabIndex = 0;
|
|
this.txtCode.TextChanged += new System.EventHandler(this.txtCode_TextChanged);
|
|
//
|
|
// btnPeek
|
|
//
|
|
this.btnPeek.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnPeek.BackgroundImage")));
|
|
this.btnPeek.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
|
this.btnPeek.Location = new System.Drawing.Point(117, 3);
|
|
this.btnPeek.Name = "btnPeek";
|
|
this.btnPeek.Size = new System.Drawing.Size(23, 23);
|
|
this.btnPeek.TabIndex = 1;
|
|
this.btnPeek.TabStop = false;
|
|
this.btnPeek.UseVisualStyleBackColor = true;
|
|
this.btnPeek.Click += new System.EventHandler(this.btnPeek_Click);
|
|
//
|
|
// ctlEmployee
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.txtDescription);
|
|
this.Controls.Add(this.txtCode);
|
|
this.Controls.Add(this.btnPeek);
|
|
this.Name = "ctlEmployee";
|
|
this.Size = new System.Drawing.Size(443, 27);
|
|
this.Resize += new System.EventHandler(this.ctlEmployee_Resize);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txtDescription;
|
|
public System.Windows.Forms.TextBox txtCode;
|
|
private System.Windows.Forms.Button btnPeek;
|
|
}
|
|
}
|