narsil/Tanshu.Accounts.PointOfSale/Products/ModifierEditForm.Designer.cs

165 lines
6.9 KiB
C#

namespace Tanshu.Accounts.PointOfSale
{
partial class ModifierEditForm
{
/// <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.txtName = new System.Windows.Forms.TextBox();
this.Label2 = new System.Windows.Forms.Label();
this.txtPrice = new System.Windows.Forms.TextBox();
this.Label5 = new System.Windows.Forms.Label();
this.btnOk = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.chkShowInBill = new System.Windows.Forms.CheckBox();
this.chkShowForAll = new System.Windows.Forms.CheckBox();
this.clbGroups = new System.Windows.Forms.CheckedListBox();
this.SuspendLayout();
//
// txtName
//
this.txtName.AccessibleName = "";
this.txtName.Location = new System.Drawing.Point(94, 12);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(276, 20);
this.txtName.TabIndex = 0;
//
// Label2
//
this.Label2.AutoSize = true;
this.Label2.Location = new System.Drawing.Point(53, 15);
this.Label2.Name = "Label2";
this.Label2.Size = new System.Drawing.Size(35, 13);
this.Label2.TabIndex = 10;
this.Label2.Text = "Name";
//
// txtPrice
//
this.txtPrice.AccessibleName = "Phone 1";
this.txtPrice.Location = new System.Drawing.Point(94, 64);
this.txtPrice.Name = "txtPrice";
this.txtPrice.Size = new System.Drawing.Size(65, 20);
this.txtPrice.TabIndex = 1;
this.txtPrice.Text = "0";
this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// Label5
//
this.Label5.AutoSize = true;
this.Label5.Location = new System.Drawing.Point(57, 67);
this.Label5.Name = "Label5";
this.Label5.Size = new System.Drawing.Size(31, 13);
this.Label5.TabIndex = 11;
this.Label5.Text = "Price";
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(214, 317);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(75, 75);
this.btnOk.TabIndex = 6;
this.btnOk.Text = "&Ok";
this.btnOk.UseVisualStyleBackColor = true;
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(295, 317);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 75);
this.btnCancel.TabIndex = 7;
this.btnCancel.Text = "&Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// chkShowInBill
//
this.chkShowInBill.AutoSize = true;
this.chkShowInBill.Location = new System.Drawing.Point(94, 38);
this.chkShowInBill.Name = "chkShowInBill";
this.chkShowInBill.Size = new System.Drawing.Size(81, 17);
this.chkShowInBill.TabIndex = 4;
this.chkShowInBill.Text = "Show In Bill";
this.chkShowInBill.UseVisualStyleBackColor = true;
//
// chkShowForAll
//
this.chkShowForAll.AutoSize = true;
this.chkShowForAll.Location = new System.Drawing.Point(94, 90);
this.chkShowForAll.Name = "chkShowForAll";
this.chkShowForAll.Size = new System.Drawing.Size(119, 17);
this.chkShowForAll.TabIndex = 3;
this.chkShowForAll.Text = "Show for All Groups";
this.chkShowForAll.UseVisualStyleBackColor = true;
this.chkShowForAll.CheckedChanged += new System.EventHandler(this.chkShowForAll_CheckedChanged);
//
// clbGroups
//
this.clbGroups.FormattingEnabled = true;
this.clbGroups.Location = new System.Drawing.Point(94, 113);
this.clbGroups.Name = "clbGroups";
this.clbGroups.Size = new System.Drawing.Size(276, 184);
this.clbGroups.TabIndex = 20;
this.clbGroups.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.clbGroups_Format);
//
// ModifierEditForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(382, 404);
this.Controls.Add(this.clbGroups);
this.Controls.Add(this.chkShowInBill);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOk);
this.Controls.Add(this.chkShowForAll);
this.Controls.Add(this.txtPrice);
this.Controls.Add(this.Label5);
this.Controls.Add(this.txtName);
this.Controls.Add(this.Label2);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ModifierEditForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Product Types";
this.Load += new System.EventHandler(this.ModifierEditForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
internal System.Windows.Forms.TextBox txtName;
internal System.Windows.Forms.Label Label2;
internal System.Windows.Forms.TextBox txtPrice;
internal System.Windows.Forms.Label Label5;
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.CheckBox chkShowInBill;
private System.Windows.Forms.CheckBox chkShowForAll;
private System.Windows.Forms.CheckedListBox clbGroups;
}
}