84 lines
3.1 KiB
C#
84 lines
3.1 KiB
C#
|
namespace Payroll.Controls
|
|||
|
{
|
|||
|
partial class ctlSingleControl
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.btnPeek = new System.Windows.Forms.Button();
|
|||
|
this.txtCode = new System.Windows.Forms.TextBox();
|
|||
|
this.txtDescription = new System.Windows.Forms.TextBox();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// btnPeek
|
|||
|
//
|
|||
|
this.btnPeek.Location = new System.Drawing.Point(116, 2);
|
|||
|
this.btnPeek.Name = "btnPeek";
|
|||
|
this.btnPeek.Size = new System.Drawing.Size(33, 23);
|
|||
|
this.btnPeek.TabIndex = 1;
|
|||
|
this.btnPeek.Text = "...";
|
|||
|
this.btnPeek.UseVisualStyleBackColor = true;
|
|||
|
this.btnPeek.Click += new System.EventHandler(this.btnPeek_Click);
|
|||
|
//
|
|||
|
// txtCode
|
|||
|
//
|
|||
|
this.txtCode.Location = new System.Drawing.Point(4, 4);
|
|||
|
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);
|
|||
|
//
|
|||
|
// txtDescription
|
|||
|
//
|
|||
|
this.txtDescription.BackColor = System.Drawing.SystemColors.ControlLightLight;
|
|||
|
this.txtDescription.Location = new System.Drawing.Point(155, 3);
|
|||
|
this.txtDescription.Name = "txtDescription";
|
|||
|
this.txtDescription.ReadOnly = true;
|
|||
|
this.txtDescription.Size = new System.Drawing.Size(293, 20);
|
|||
|
this.txtDescription.TabIndex = 2;
|
|||
|
//
|
|||
|
// ctlSingleControl
|
|||
|
//
|
|||
|
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 = "ctlSingleControl";
|
|||
|
this.Size = new System.Drawing.Size(451, 26);
|
|||
|
this.Resize += new System.EventHandler(this.ctlSingleControl_Resize);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Button btnPeek;
|
|||
|
private System.Windows.Forms.TextBox txtCode;
|
|||
|
private System.Windows.Forms.TextBox txtDescription;
|
|||
|
}
|
|||
|
}
|