97 lines
3.7 KiB
C#
Executable File
97 lines
3.7 KiB
C#
Executable File
namespace lab5_7_CalebFontenot
|
|
{
|
|
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.calculateButton = new System.Windows.Forms.Button();
|
|
this.exitButton = new System.Windows.Forms.Button();
|
|
this.totalLabel = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// calculateButton
|
|
//
|
|
this.calculateButton.Location = new System.Drawing.Point(12, 35);
|
|
this.calculateButton.Name = "calculateButton";
|
|
this.calculateButton.Size = new System.Drawing.Size(127, 40);
|
|
this.calculateButton.TabIndex = 0;
|
|
this.calculateButton.Text = "Read Sales && Calculate Total";
|
|
this.calculateButton.UseVisualStyleBackColor = true;
|
|
this.calculateButton.Click += new System.EventHandler(this.calculateButton_Click);
|
|
//
|
|
// exitButton
|
|
//
|
|
this.exitButton.Location = new System.Drawing.Point(145, 35);
|
|
this.exitButton.Name = "exitButton";
|
|
this.exitButton.Size = new System.Drawing.Size(127, 40);
|
|
this.exitButton.TabIndex = 1;
|
|
this.exitButton.Text = "Exit";
|
|
this.exitButton.UseVisualStyleBackColor = true;
|
|
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
|
//
|
|
// totalLabel
|
|
//
|
|
this.totalLabel.Location = new System.Drawing.Point(82, 6);
|
|
this.totalLabel.Name = "totalLabel";
|
|
this.totalLabel.ReadOnly = true;
|
|
this.totalLabel.Size = new System.Drawing.Size(190, 23);
|
|
this.totalLabel.TabIndex = 2;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(64, 15);
|
|
this.label1.TabIndex = 3;
|
|
this.label1.Text = "Total Sales:";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(286, 89);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.totalLabel);
|
|
this.Controls.Add(this.exitButton);
|
|
this.Controls.Add(this.calculateButton);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button calculateButton;
|
|
private Button exitButton;
|
|
private TextBox totalLabel;
|
|
private Label label1;
|
|
}
|
|
} |