75 lines
2.7 KiB
C#
75 lines
2.7 KiB
C#
|
namespace Payroll.Controls.CustomControls
|
|||
|
{
|
|||
|
partial class ctlDAManagement
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.txtCode = new System.Windows.Forms.TextBox();
|
|||
|
this.btnPick = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// txtCode
|
|||
|
//
|
|||
|
this.txtCode.Location = new System.Drawing.Point(3, 3);
|
|||
|
this.txtCode.Name = "txtCode";
|
|||
|
this.txtCode.Size = new System.Drawing.Size(299, 20);
|
|||
|
this.txtCode.TabIndex = 1;
|
|||
|
this.txtCode.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|||
|
this.txtCode.Leave += new System.EventHandler(this.txtCode_Leave);
|
|||
|
//
|
|||
|
// btnPick
|
|||
|
//
|
|||
|
this.btnPick.BackColor = System.Drawing.Color.WhiteSmoke;
|
|||
|
this.btnPick.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|||
|
this.btnPick.Location = new System.Drawing.Point(305, 2);
|
|||
|
this.btnPick.Name = "btnPick";
|
|||
|
this.btnPick.Size = new System.Drawing.Size(39, 23);
|
|||
|
this.btnPick.TabIndex = 0;
|
|||
|
this.btnPick.Text = "...";
|
|||
|
this.btnPick.UseVisualStyleBackColor = false;
|
|||
|
this.btnPick.Click += new System.EventHandler(this.btnPick_Click);
|
|||
|
//
|
|||
|
// ctlDAManagement
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.btnPick);
|
|||
|
this.Controls.Add(this.txtCode);
|
|||
|
this.Name = "ctlDAManagement";
|
|||
|
this.Size = new System.Drawing.Size(348, 26);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.TextBox txtCode;
|
|||
|
private System.Windows.Forms.Button btnPick;
|
|||
|
}
|
|||
|
}
|