narsil/Tanshu.Accounts.PointOfSale/Sales/DiscountForm.Designer.cs

111 lines
4.6 KiB
C#

namespace Tanshu.Accounts.PointOfSale
{
partial class DiscountForm
{
/// <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.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.numpadControl1 = new Tanshu.Common.KeyboardControl.NumpadControl();
this.txtAmount = new System.Windows.Forms.TextBox();
this.flpModifier = new System.Windows.Forms.FlowLayoutPanel();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.numpadControl1);
this.splitContainer1.Panel1.Controls.Add(this.txtAmount);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.flpModifier);
this.splitContainer1.Size = new System.Drawing.Size(847, 492);
this.splitContainer1.SplitterDistance = 232;
this.splitContainer1.TabIndex = 2;
//
// numpadControl1
//
this.numpadControl1.Location = new System.Drawing.Point(3, 29);
this.numpadControl1.Name = "numpadControl1";
this.numpadControl1.Size = new System.Drawing.Size(224, 224);
this.numpadControl1.TabIndex = 1;
//
// txtAmount
//
this.txtAmount.Location = new System.Drawing.Point(3, 3);
this.txtAmount.Name = "txtAmount";
this.txtAmount.Size = new System.Drawing.Size(224, 20);
this.txtAmount.TabIndex = 0;
this.txtAmount.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAmount_KeyDown);
//
// flpModifier
//
this.flpModifier.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.flpModifier.Dock = System.Windows.Forms.DockStyle.Fill;
this.flpModifier.Location = new System.Drawing.Point(0, 0);
this.flpModifier.Name = "flpModifier";
this.flpModifier.Size = new System.Drawing.Size(611, 492);
this.flpModifier.TabIndex = 6;
//
// DiscountForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(847, 492);
this.ControlBox = false;
this.Controls.Add(this.splitContainer1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.Name = "DiscountForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Discount";
this.Load += new System.EventHandler(this.DiscountForm_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private Tanshu.Common.KeyboardControl.NumpadControl numpadControl1;
private System.Windows.Forms.TextBox txtAmount;
private System.Windows.Forms.FlowLayoutPanel flpModifier;
}
}