103 lines
4.1 KiB
C#
103 lines
4.1 KiB
C#
namespace Tanshu.Accounts.PointOfSale
|
|
{
|
|
partial class BillSettleForm
|
|
{
|
|
/// <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.btnCash = new System.Windows.Forms.Button();
|
|
this.btnCreditCard = new System.Windows.Forms.Button();
|
|
this.btnNC = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnCash
|
|
//
|
|
this.btnCash.Location = new System.Drawing.Point(12, 12);
|
|
this.btnCash.Name = "btnCash";
|
|
this.btnCash.Size = new System.Drawing.Size(75, 75);
|
|
this.btnCash.TabIndex = 0;
|
|
this.btnCash.Text = "Cash";
|
|
this.btnCash.UseVisualStyleBackColor = true;
|
|
this.btnCash.Click += new System.EventHandler(this.btnCash_Click);
|
|
//
|
|
// btnCreditCard
|
|
//
|
|
this.btnCreditCard.Location = new System.Drawing.Point(93, 12);
|
|
this.btnCreditCard.Name = "btnCreditCard";
|
|
this.btnCreditCard.Size = new System.Drawing.Size(75, 75);
|
|
this.btnCreditCard.TabIndex = 1;
|
|
this.btnCreditCard.Text = "Credit Card";
|
|
this.btnCreditCard.UseVisualStyleBackColor = true;
|
|
this.btnCreditCard.Click += new System.EventHandler(this.btnCreditCard_Click);
|
|
//
|
|
// btnNC
|
|
//
|
|
this.btnNC.Location = new System.Drawing.Point(174, 12);
|
|
this.btnNC.Name = "btnNC";
|
|
this.btnNC.Size = new System.Drawing.Size(75, 75);
|
|
this.btnNC.TabIndex = 2;
|
|
this.btnNC.Text = "No Charge";
|
|
this.btnNC.UseVisualStyleBackColor = true;
|
|
this.btnNC.Click += new System.EventHandler(this.btnNC_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Location = new System.Drawing.Point(255, 12);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 75);
|
|
this.btnCancel.TabIndex = 3;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// BillSettleForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(342, 99);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnNC);
|
|
this.Controls.Add(this.btnCreditCard);
|
|
this.Controls.Add(this.btnCash);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.MaximizeBox = false;
|
|
this.Name = "BillSettleForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Settle Bill";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnCash;
|
|
private System.Windows.Forms.Button btnCreditCard;
|
|
private System.Windows.Forms.Button btnNC;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
}
|
|
} |