summary refs log tree commit diff
path: root/invoice_total4/InvoiceTotal/frmInvoiceTotal.Designer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'invoice_total4/InvoiceTotal/frmInvoiceTotal.Designer.cs')
-rw-r--r--invoice_total4/InvoiceTotal/frmInvoiceTotal.Designer.cs174
1 files changed, 174 insertions, 0 deletions
diff --git a/invoice_total4/InvoiceTotal/frmInvoiceTotal.Designer.cs b/invoice_total4/InvoiceTotal/frmInvoiceTotal.Designer.cs
new file mode 100644
index 0000000..4909f59
--- /dev/null
+++ b/invoice_total4/InvoiceTotal/frmInvoiceTotal.Designer.cs
@@ -0,0 +1,174 @@
+namespace InvoiceTotal

+{

+    partial class frmInvoiceTotal

+    {

+        /// <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.label1 = new System.Windows.Forms.Label();

+            this.label2 = new System.Windows.Forms.Label();

+            this.label3 = new System.Windows.Forms.Label();

+            this.label4 = new System.Windows.Forms.Label();

+            this.txtSubtotal = new System.Windows.Forms.TextBox();

+            this.btnCalculate = new System.Windows.Forms.Button();

+            this.btnExit = new System.Windows.Forms.Button();

+            this.txtDiscountPercent = new System.Windows.Forms.TextBox();

+            this.txtDiscountAmount = new System.Windows.Forms.TextBox();

+            this.txtTotal = new System.Windows.Forms.TextBox();

+            this.SuspendLayout();

+            // 

+            // label1

+            // 

+            this.label1.AutoSize = true;

+            this.label1.Location = new System.Drawing.Point(20, 12);

+            this.label1.Name = "label1";

+            this.label1.Size = new System.Drawing.Size(49, 13);

+            this.label1.TabIndex = 0;

+            this.label1.Text = "&Subtotal:";

+            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

+            // 

+            // label2

+            // 

+            this.label2.AutoSize = true;

+            this.label2.Location = new System.Drawing.Point(20, 38);

+            this.label2.Name = "label2";

+            this.label2.Size = new System.Drawing.Size(92, 13);

+            this.label2.TabIndex = 1;

+            this.label2.Text = "Discount Percent:";

+            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

+            // 

+            // label3

+            // 

+            this.label3.AutoSize = true;

+            this.label3.Location = new System.Drawing.Point(21, 65);

+            this.label3.Name = "label3";

+            this.label3.Size = new System.Drawing.Size(91, 13);

+            this.label3.TabIndex = 2;

+            this.label3.Text = "Discount Amount:";

+            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

+            // 

+            // label4

+            // 

+            this.label4.AutoSize = true;

+            this.label4.Location = new System.Drawing.Point(21, 91);

+            this.label4.Name = "label4";

+            this.label4.Size = new System.Drawing.Size(34, 13);

+            this.label4.TabIndex = 3;

+            this.label4.Text = "Total:";

+            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

+            // 

+            // txtSubtotal

+            // 

+            this.txtSubtotal.Location = new System.Drawing.Point(115, 9);

+            this.txtSubtotal.Name = "txtSubtotal";

+            this.txtSubtotal.Size = new System.Drawing.Size(100, 20);

+            this.txtSubtotal.TabIndex = 1;

+            // 

+            // btnCalculate

+            // 

+            this.btnCalculate.Location = new System.Drawing.Point(53, 122);

+            this.btnCalculate.Name = "btnCalculate";

+            this.btnCalculate.Size = new System.Drawing.Size(75, 23);

+            this.btnCalculate.TabIndex = 2;

+            this.btnCalculate.Text = "&Calculate";

+            this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click);

+            // 

+            // btnExit

+            // 

+            this.btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;

+            this.btnExit.Location = new System.Drawing.Point(140, 122);

+            this.btnExit.Name = "btnExit";

+            this.btnExit.Size = new System.Drawing.Size(75, 23);

+            this.btnExit.TabIndex = 3;

+            this.btnExit.Text = "E&xit";

+            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);

+            // 

+            // txtDiscountPercent

+            // 

+            this.txtDiscountPercent.Location = new System.Drawing.Point(115, 35);

+            this.txtDiscountPercent.Name = "txtDiscountPercent";

+            this.txtDiscountPercent.ReadOnly = true;

+            this.txtDiscountPercent.Size = new System.Drawing.Size(100, 20);

+            this.txtDiscountPercent.TabIndex = 10;

+            this.txtDiscountPercent.TabStop = false;

+            // 

+            // txtDiscountAmount

+            // 

+            this.txtDiscountAmount.Location = new System.Drawing.Point(115, 62);

+            this.txtDiscountAmount.Name = "txtDiscountAmount";

+            this.txtDiscountAmount.ReadOnly = true;

+            this.txtDiscountAmount.Size = new System.Drawing.Size(100, 20);

+            this.txtDiscountAmount.TabIndex = 11;

+            this.txtDiscountAmount.TabStop = false;

+            // 

+            // txtTotal

+            // 

+            this.txtTotal.Location = new System.Drawing.Point(115, 88);

+            this.txtTotal.Name = "txtTotal";

+            this.txtTotal.ReadOnly = true;

+            this.txtTotal.Size = new System.Drawing.Size(100, 20);

+            this.txtTotal.TabIndex = 12;

+            this.txtTotal.TabStop = false;

+            // 

+            // frmInvoiceTotal

+            // 

+            this.AcceptButton = this.btnCalculate;

+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);

+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;

+            this.CancelButton = this.btnExit;

+            this.ClientSize = new System.Drawing.Size(237, 159);

+            this.Controls.Add(this.txtTotal);

+            this.Controls.Add(this.txtDiscountAmount);

+            this.Controls.Add(this.txtDiscountPercent);

+            this.Controls.Add(this.btnExit);

+            this.Controls.Add(this.btnCalculate);

+            this.Controls.Add(this.txtSubtotal);

+            this.Controls.Add(this.label4);

+            this.Controls.Add(this.label3);

+            this.Controls.Add(this.label2);

+            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 System.Windows.Forms.Label label1;

+        private System.Windows.Forms.Label label2;

+        private System.Windows.Forms.Label label3;

+        private System.Windows.Forms.Label label4;

+        private System.Windows.Forms.TextBox txtSubtotal;

+        private System.Windows.Forms.Button btnCalculate;

+        private System.Windows.Forms.Button btnExit;

+        private System.Windows.Forms.TextBox txtDiscountPercent;

+        private System.Windows.Forms.TextBox txtDiscountAmount;

+        private System.Windows.Forms.TextBox txtTotal;

+    }

+}

+