91 lines
3.8 KiB
C#
91 lines
3.8 KiB
C#
namespace Payroll.Controls.CustomControls
|
|
{
|
|
partial class ctlOrgControl
|
|
{
|
|
/// <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.lblText = new System.Windows.Forms.Label();
|
|
this.btnSearch = new System.Windows.Forms.Button();
|
|
this.btnClear = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// 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.Location = new System.Drawing.Point(1, 0);
|
|
this.lblText.Name = "lblText";
|
|
this.lblText.Size = new System.Drawing.Size(268, 20);
|
|
this.lblText.TabIndex = 0;
|
|
//
|
|
// btnSearch
|
|
//
|
|
this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnSearch.Location = new System.Drawing.Point(269, 0);
|
|
this.btnSearch.Name = "btnSearch";
|
|
this.btnSearch.Size = new System.Drawing.Size(23, 20);
|
|
this.btnSearch.TabIndex = 1;
|
|
this.btnSearch.Text = "---";
|
|
this.btnSearch.UseVisualStyleBackColor = true;
|
|
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
|
|
//
|
|
// btnClear
|
|
//
|
|
this.btnClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnClear.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|
this.btnClear.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.btnClear.Location = new System.Drawing.Point(294, 0);
|
|
this.btnClear.Name = "btnClear";
|
|
this.btnClear.Size = new System.Drawing.Size(54, 20);
|
|
this.btnClear.TabIndex = 1;
|
|
this.btnClear.Text = "Clear";
|
|
this.btnClear.UseVisualStyleBackColor = true;
|
|
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
|
|
//
|
|
// ctlOrgControl
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
this.Controls.Add(this.btnClear);
|
|
this.Controls.Add(this.btnSearch);
|
|
this.Controls.Add(this.lblText);
|
|
this.Name = "ctlOrgControl";
|
|
this.Size = new System.Drawing.Size(350, 22);
|
|
this.Resize += new System.EventHandler(this.ctlOrgControl_Resize);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lblText;
|
|
private System.Windows.Forms.Button btnSearch;
|
|
private System.Windows.Forms.Button btnClear;
|
|
}
|
|
}
|