namespace Lab4_2_CalebFontenot { partial class Form1 { /// /// 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.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.hoursWorkedTextBox = new System.Windows.Forms.TextBox(); this.hourlyPayRateTextBox = new System.Windows.Forms.TextBox(); this.grossPayLabel = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.button3 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 32); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(86, 15); this.label1.TabIndex = 0; this.label1.Text = "Hours Worked:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(7, 60); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(91, 15); this.label2.TabIndex = 1; this.label2.Text = "Hourly pay rate:"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(37, 89); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(61, 15); this.label3.TabIndex = 2; this.label3.Text = "Gross pay:"; // // hoursWorkedTextBox // this.hoursWorkedTextBox.Location = new System.Drawing.Point(104, 29); this.hoursWorkedTextBox.Name = "hoursWorkedTextBox"; this.hoursWorkedTextBox.Size = new System.Drawing.Size(113, 23); this.hoursWorkedTextBox.TabIndex = 3; // // hourlyPayRateTextBox // this.hourlyPayRateTextBox.Location = new System.Drawing.Point(104, 57); this.hourlyPayRateTextBox.Name = "hourlyPayRateTextBox"; this.hourlyPayRateTextBox.Size = new System.Drawing.Size(113, 23); this.hourlyPayRateTextBox.TabIndex = 4; // // grossPayLabel // this.grossPayLabel.Location = new System.Drawing.Point(104, 86); this.grossPayLabel.Name = "grossPayLabel"; this.grossPayLabel.Size = new System.Drawing.Size(113, 23); this.grossPayLabel.TabIndex = 5; // // button1 // this.button1.Location = new System.Drawing.Point(7, 115); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(74, 47); this.button1.TabIndex = 6; this.button1.Text = "Calculate Gross Pay"; this.button1.UseVisualStyleBackColor = true; // // button2 // this.button2.Location = new System.Drawing.Point(87, 115); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(60, 47); this.button2.TabIndex = 7; this.button2.Text = "Clear"; this.button2.UseVisualStyleBackColor = true; // // button3 // this.button3.Location = new System.Drawing.Point(153, 115); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(64, 47); this.button3.TabIndex = 8; this.button3.Text = "Exit"; this.button3.UseVisualStyleBackColor = true; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(232, 182); this.Controls.Add(this.button3); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.grossPayLabel); this.Controls.Add(this.hourlyPayRateTextBox); this.Controls.Add(this.hoursWorkedTextBox); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private TextBox hoursWorkedTextBox; private TextBox hourlyPayRateTextBox; private TextBox grossPayLabel; private Button button1; private Button button2; private Button button3; } }