namespace InvoiceTotal
{
partial class frmInvoiceTotal
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.txtSubtotal = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtDiscountPct = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtDiscountAmt = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtTotal = new System.Windows.Forms.TextBox();
this.btnCalculate = new System.Windows.Forms.Button();
this.btnExit = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(21, 18);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(54, 15);
this.label1.TabIndex = 0;
this.label1.Text = "&Subtotal:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// txtSubtotal
//
this.txtSubtotal.Location = new System.Drawing.Point(131, 15);
this.txtSubtotal.Name = "txtSubtotal";
this.txtSubtotal.Size = new System.Drawing.Size(100, 23);
this.txtSubtotal.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(21, 47);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(100, 15);
this.label2.TabIndex = 2;
this.label2.Text = "Discount Percent:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// txtDiscountPct
//
this.txtDiscountPct.Location = new System.Drawing.Point(131, 44);
this.txtDiscountPct.Name = "txtDiscountPct";
this.txtDiscountPct.ReadOnly = true;
this.txtDiscountPct.Size = new System.Drawing.Size(100, 23);
this.txtDiscountPct.TabIndex = 3;
this.txtDiscountPct.TabStop = false;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(21, 76);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(104, 15);
this.label3.TabIndex = 4;
this.label3.Text = "Discount Amount:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// txtDiscountAmt
//
this.txtDiscountAmt.Location = new System.Drawing.Point(131, 73);
this.txtDiscountAmt.Name = "txtDiscountAmt";
this.txtDiscountAmt.ReadOnly = true;
this.txtDiscountAmt.Size = new System.Drawing.Size(100, 23);
this.txtDiscountAmt.TabIndex = 5;
this.txtDiscountAmt.TabStop = false;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(21, 105);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(36, 15);
this.label4.TabIndex = 6;
this.label4.Text = "Total:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// txtTotal
//
this.txtTotal.Location = new System.Drawing.Point(131, 102);
this.txtTotal.Name = "txtTotal";
this.txtTotal.ReadOnly = true;
this.txtTotal.Size = new System.Drawing.Size(100, 23);
this.txtTotal.TabIndex = 7;
this.txtTotal.TabStop = false;
//
// btnCalculate
//
this.btnCalculate.Location = new System.Drawing.Point(64, 142);
this.btnCalculate.Name = "btnCalculate";
this.btnCalculate.Size = new System.Drawing.Size(75, 23);
this.btnCalculate.TabIndex = 2;
this.btnCalculate.Text = "&Calculate";
this.btnCalculate.UseVisualStyleBackColor = true;
this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click);
//
// btnExit
//
this.btnExit.Location = new System.Drawing.Point(156, 142);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(75, 23);
this.btnExit.TabIndex = 3;
this.btnExit.Text = "E&xit";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// frmInvoiceTotal
//
this.AcceptButton = this.btnCalculate;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnExit;
this.ClientSize = new System.Drawing.Size(254, 181);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.btnCalculate);
this.Controls.Add(this.txtTotal);
this.Controls.Add(this.label4);
this.Controls.Add(this.txtDiscountAmt);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtDiscountPct);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtSubtotal);
this.Controls.Add(this.label1);
this.Name = "frmInvoiceTotal";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Invoice Total";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label label1;
private TextBox txtSubtotal;
private Label label2;
private TextBox txtDiscountPct;
private Label label3;
private TextBox txtDiscountAmt;
private Label label4;
private TextBox txtTotal;
private Button btnCalculate;
private Button btnExit;
}
}