Files
ASDV-C-Sharp/Student Sample Programs/Chap05/Total Sales/Total Sales/Form1.Designer.cs
2022-08-30 14:15:11 -05:00

98 lines
3.9 KiB
C#

namespace Total_Sales
{
partial class Form1
{
/// <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.outputDescriptionLabel = new System.Windows.Forms.Label();
this.totalLabel = new System.Windows.Forms.Label();
this.calculateButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// outputDescriptionLabel
//
this.outputDescriptionLabel.AutoSize = true;
this.outputDescriptionLabel.Location = new System.Drawing.Point(29, 28);
this.outputDescriptionLabel.Name = "outputDescriptionLabel";
this.outputDescriptionLabel.Size = new System.Drawing.Size(63, 13);
this.outputDescriptionLabel.TabIndex = 0;
this.outputDescriptionLabel.Text = "Total Sales:";
//
// totalLabel
//
this.totalLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.totalLabel.Location = new System.Drawing.Point(98, 23);
this.totalLabel.Name = "totalLabel";
this.totalLabel.Size = new System.Drawing.Size(100, 23);
this.totalLabel.TabIndex = 1;
this.totalLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// calculateButton
//
this.calculateButton.Location = new System.Drawing.Point(13, 68);
this.calculateButton.Name = "calculateButton";
this.calculateButton.Size = new System.Drawing.Size(97, 51);
this.calculateButton.TabIndex = 2;
this.calculateButton.Text = "Read Sales && Calculate Total";
this.calculateButton.UseVisualStyleBackColor = true;
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(116, 68);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(97, 51);
this.exitButton.TabIndex = 3;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(227, 135);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.calculateButton);
this.Controls.Add(this.totalLabel);
this.Controls.Add(this.outputDescriptionLabel);
this.Name = "Form1";
this.Text = "Total Sales";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label outputDescriptionLabel;
private System.Windows.Forms.Label totalLabel;
private System.Windows.Forms.Button calculateButton;
private System.Windows.Forms.Button exitButton;
}
}