CEL_Payroll/Payroll.Controls/CustomControls/fSearchVendor.Designer.cs
2024-09-17 14:30:13 +06:00

161 lines
6.8 KiB
C#

namespace Payroll.Controls
{
partial class fSearchVendor
{
/// <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 Windows Form 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.lvwItems = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.colName = new System.Windows.Forms.ColumnHeader();
this.btnSearch = new System.Windows.Forms.Button();
this.txtSearch = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.btnClose = new System.Windows.Forms.Button();
this.btnOk = new System.Windows.Forms.Button();
this.btnSelectAll = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lvwItems
//
this.lvwItems.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lvwItems.CheckBoxes = true;
this.lvwItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.colName});
this.lvwItems.GridLines = true;
this.lvwItems.Location = new System.Drawing.Point(5, 55);
this.lvwItems.Name = "lvwItems";
this.lvwItems.Size = new System.Drawing.Size(467, 378);
this.lvwItems.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.lvwItems.TabIndex = 4;
this.lvwItems.UseCompatibleStateImageBehavior = false;
this.lvwItems.View = System.Windows.Forms.View.Details;
this.lvwItems.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvwItems_ColumnClick);
//
// columnHeader1
//
this.columnHeader1.Text = "...";
this.columnHeader1.Width = 30;
//
// colName
//
this.colName.Text = "Name";
this.colName.Width = 420;
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(289, 15);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(61, 28);
this.btnSearch.TabIndex = 7;
this.btnSearch.Text = "Search";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// txtSearch
//
this.txtSearch.Location = new System.Drawing.Point(76, 20);
this.txtSearch.Name = "txtSearch";
this.txtSearch.Size = new System.Drawing.Size(198, 20);
this.txtSearch.TabIndex = 6;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(8, 24);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(44, 13);
this.label2.TabIndex = 5;
this.label2.Text = "Name: ";
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Location = new System.Drawing.Point(397, 439);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 28);
this.btnClose.TabIndex = 10;
this.btnClose.Text = "&Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(313, 439);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(75, 28);
this.btnOk.TabIndex = 9;
this.btnOk.Text = "&Ok";
this.btnOk.UseVisualStyleBackColor = true;
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
//
// btnSelectAll
//
this.btnSelectAll.Location = new System.Drawing.Point(5, 439);
this.btnSelectAll.Name = "btnSelectAll";
this.btnSelectAll.Size = new System.Drawing.Size(96, 28);
this.btnSelectAll.TabIndex = 8;
this.btnSelectAll.Text = "Select &All";
this.btnSelectAll.UseVisualStyleBackColor = true;
this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
//
// fSearchVendor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(483, 477);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnOk);
this.Controls.Add(this.btnSelectAll);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.txtSearch);
this.Controls.Add(this.label2);
this.Controls.Add(this.lvwItems);
this.Name = "fSearchVendor";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Vendor Search";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView lvwItems;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.TextBox txtSearch;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnSelectAll;
private System.Windows.Forms.ColumnHeader colName;
}
}