74 lines
2.7 KiB
C#
74 lines
2.7 KiB
C#
|
namespace Tanshu.Accounts.PointOfSale
|
|||
|
{
|
|||
|
partial class PaxForm
|
|||
|
{
|
|||
|
/// <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.numpadControl1 = new Tanshu.Common.KeyboardControl.NumpadControl();
|
|||
|
this.txtAmount = new System.Windows.Forms.TextBox();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// numpadControl1
|
|||
|
//
|
|||
|
this.numpadControl1.Location = new System.Drawing.Point(12, 38);
|
|||
|
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(12, 12);
|
|||
|
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);
|
|||
|
//
|
|||
|
// PaxForm
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(248, 274);
|
|||
|
this.ControlBox = false;
|
|||
|
this.Controls.Add(this.txtAmount);
|
|||
|
this.Controls.Add(this.numpadControl1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.Name = "PaxForm";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|||
|
this.Text = "Pax";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Tanshu.Common.KeyboardControl.NumpadControl numpadControl1;
|
|||
|
private System.Windows.Forms.TextBox txtAmount;
|
|||
|
|
|||
|
}
|
|||
|
}
|