CEL_Payroll/Payroll.Controls/CustomControls/ctlCard.Designer.cs

85 lines
3.2 KiB
C#
Raw Normal View History

2024-09-17 14:30:13 +06:00
namespace Payroll.Controls.CustomControls
{
partial class ctlCard
{
/// <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.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(154, 4);
this.txtDescription.Name = "txtDescription";
this.txtDescription.ReadOnly = true;
this.txtDescription.Size = new System.Drawing.Size(293, 20);
this.txtDescription.TabIndex = 5;
//
// txtCode
//
this.txtCode.Location = new System.Drawing.Point(3, 5);
this.txtCode.Name = "txtCode";
this.txtCode.Size = new System.Drawing.Size(106, 20);
this.txtCode.TabIndex = 3;
this.txtCode.TextChanged += new System.EventHandler(this.txtCode_TextChanged);
//
// btnPeek
//
this.btnPeek.Location = new System.Drawing.Point(115, 3);
this.btnPeek.Name = "btnPeek";
this.btnPeek.Size = new System.Drawing.Size(33, 23);
this.btnPeek.TabIndex = 4;
this.btnPeek.Text = "...";
this.btnPeek.UseVisualStyleBackColor = true;
this.btnPeek.Click += new System.EventHandler(this.btnPeek_Click);
//
// ctlCard
//
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 = "ctlCard";
this.Size = new System.Drawing.Size(451, 29);
this.Resize += new System.EventHandler(this.ctlCard_Resize);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtDescription;
private System.Windows.Forms.TextBox txtCode;
private System.Windows.Forms.Button btnPeek;
}
}