147 lines
6.2 KiB
C#
147 lines
6.2 KiB
C#
using System.ComponentModel;
|
|
|
|
namespace Chapter6
|
|
{
|
|
partial class frmSummary
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private 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.lblQuantity = new System.Windows.Forms.Label();
|
|
this.lblPrice = new System.Windows.Forms.Label();
|
|
this.lblDiscount = new System.Windows.Forms.Label();
|
|
this.lblTotal = new System.Windows.Forms.Label();
|
|
this.lblDisTotal = new System.Windows.Forms.Label();
|
|
this.lblDisDiscount = new System.Windows.Forms.Label();
|
|
this.lblDisPrice = new System.Windows.Forms.Label();
|
|
this.lblDisQuantity = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblQuantity
|
|
//
|
|
this.lblQuantity.BackColor = System.Drawing.SystemColors.Info;
|
|
this.lblQuantity.Location = new System.Drawing.Point(298, 137);
|
|
this.lblQuantity.Name = "lblQuantity";
|
|
this.lblQuantity.Size = new System.Drawing.Size(128, 29);
|
|
this.lblQuantity.TabIndex = 0;
|
|
this.lblQuantity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// lblPrice
|
|
//
|
|
this.lblPrice.BackColor = System.Drawing.SystemColors.Info;
|
|
this.lblPrice.Location = new System.Drawing.Point(298, 166);
|
|
this.lblPrice.Name = "lblPrice";
|
|
this.lblPrice.Size = new System.Drawing.Size(128, 29);
|
|
this.lblPrice.TabIndex = 1;
|
|
this.lblPrice.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// lblDiscount
|
|
//
|
|
this.lblDiscount.BackColor = System.Drawing.SystemColors.Info;
|
|
this.lblDiscount.Location = new System.Drawing.Point(298, 195);
|
|
this.lblDiscount.Name = "lblDiscount";
|
|
this.lblDiscount.Size = new System.Drawing.Size(128, 29);
|
|
this.lblDiscount.TabIndex = 2;
|
|
this.lblDiscount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// lblTotal
|
|
//
|
|
this.lblTotal.BackColor = System.Drawing.SystemColors.Info;
|
|
this.lblTotal.Location = new System.Drawing.Point(298, 224);
|
|
this.lblTotal.Name = "lblTotal";
|
|
this.lblTotal.Size = new System.Drawing.Size(128, 29);
|
|
this.lblTotal.TabIndex = 3;
|
|
this.lblTotal.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// lblDisTotal
|
|
//
|
|
this.lblDisTotal.BackColor = System.Drawing.SystemColors.Control;
|
|
this.lblDisTotal.Location = new System.Drawing.Point(146, 224);
|
|
this.lblDisTotal.Name = "lblDisTotal";
|
|
this.lblDisTotal.Size = new System.Drawing.Size(128, 29);
|
|
this.lblDisTotal.TabIndex = 7;
|
|
this.lblDisTotal.Text = "Total Sale";
|
|
this.lblDisTotal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// lblDisDiscount
|
|
//
|
|
this.lblDisDiscount.Location = new System.Drawing.Point(146, 195);
|
|
this.lblDisDiscount.Name = "lblDisDiscount";
|
|
this.lblDisDiscount.Size = new System.Drawing.Size(128, 29);
|
|
this.lblDisDiscount.TabIndex = 6;
|
|
this.lblDisDiscount.Text = "Discount";
|
|
this.lblDisDiscount.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// lblDisPrice
|
|
//
|
|
this.lblDisPrice.Location = new System.Drawing.Point(146, 166);
|
|
this.lblDisPrice.Name = "lblDisPrice";
|
|
this.lblDisPrice.Size = new System.Drawing.Size(128, 29);
|
|
this.lblDisPrice.TabIndex = 5;
|
|
this.lblDisPrice.Text = "Price";
|
|
this.lblDisPrice.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// lblDisQuantity
|
|
//
|
|
this.lblDisQuantity.Location = new System.Drawing.Point(146, 137);
|
|
this.lblDisQuantity.Name = "lblDisQuantity";
|
|
this.lblDisQuantity.Size = new System.Drawing.Size(128, 29);
|
|
this.lblDisQuantity.TabIndex = 4;
|
|
this.lblDisQuantity.Text = "Quantity";
|
|
this.lblDisQuantity.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// frmSummary
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.lblDisTotal);
|
|
this.Controls.Add(this.lblDisDiscount);
|
|
this.Controls.Add(this.lblDisPrice);
|
|
this.Controls.Add(this.lblDisQuantity);
|
|
this.Controls.Add(this.lblTotal);
|
|
this.Controls.Add(this.lblDiscount);
|
|
this.Controls.Add(this.lblPrice);
|
|
this.Controls.Add(this.lblQuantity);
|
|
this.Name = "frmSummary";
|
|
this.Text = "frmSummary";
|
|
this.ResumeLayout(false);
|
|
}
|
|
|
|
private System.Windows.Forms.Label lblDisTotal;
|
|
private System.Windows.Forms.Label lblDisDiscount;
|
|
private System.Windows.Forms.Label lblDisPrice;
|
|
private System.Windows.Forms.Label lblDisQuantity;
|
|
|
|
private System.Windows.Forms.Label lblQuantity;
|
|
private System.Windows.Forms.Label lblPrice;
|
|
private System.Windows.Forms.Label lblDiscount;
|
|
private System.Windows.Forms.Label lblTotal;
|
|
|
|
#endregion
|
|
}
|
|
} |