96 lines
4.4 KiB
C#
96 lines
4.4 KiB
C#
|
namespace Payroll.Controls.CustomControls
|
|||
|
{
|
|||
|
partial class ctlMultipleEmployee
|
|||
|
{
|
|||
|
/// <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(ctlMultipleEmployee));
|
|||
|
this.btnPeek = new System.Windows.Forms.Button();
|
|||
|
this.btnClear = new System.Windows.Forms.Button();
|
|||
|
this.lblText = new System.Windows.Forms.Label();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// btnPeek
|
|||
|
//
|
|||
|
this.btnPeek.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
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(244, 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);
|
|||
|
//
|
|||
|
// btnClear
|
|||
|
//
|
|||
|
this.btnClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.btnClear.Enabled = false;
|
|||
|
this.btnClear.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|||
|
this.btnClear.ForeColor = System.Drawing.SystemColors.Desktop;
|
|||
|
this.btnClear.Location = new System.Drawing.Point(268, 4);
|
|||
|
this.btnClear.Name = "btnClear";
|
|||
|
this.btnClear.Size = new System.Drawing.Size(54, 20);
|
|||
|
this.btnClear.TabIndex = 3;
|
|||
|
this.btnClear.Text = "Clear";
|
|||
|
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
|
|||
|
//
|
|||
|
// lblText
|
|||
|
//
|
|||
|
this.lblText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.lblText.BackColor = System.Drawing.Color.White;
|
|||
|
this.lblText.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.lblText.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
this.lblText.Location = new System.Drawing.Point(0, 4);
|
|||
|
this.lblText.Name = "lblText";
|
|||
|
this.lblText.Size = new System.Drawing.Size(243, 20);
|
|||
|
this.lblText.TabIndex = 4;
|
|||
|
//
|
|||
|
// ctlMultipleEmployee
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.lblText);
|
|||
|
this.Controls.Add(this.btnClear);
|
|||
|
this.Controls.Add(this.btnPeek);
|
|||
|
this.Name = "ctlMultipleEmployee";
|
|||
|
this.Size = new System.Drawing.Size(323, 27);
|
|||
|
// this.Resize += new System.EventHandler(this.ctlEmployee_Resize);
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Button btnPeek;
|
|||
|
private System.Windows.Forms.Button btnClear;
|
|||
|
private System.Windows.Forms.Label lblText;
|
|||
|
}
|
|||
|
}
|