Files
ASDV-C-Sharp/Student Sample Programs/Chap10/Cell Phone Inventory/Cell Phone Inventory/Form1.Designer.cs
2022-08-30 14:15:11 -05:00

179 lines
8.0 KiB
C#

namespace Cell_Phone_Inventory
{
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.enterDataGroupBox = new System.Windows.Forms.GroupBox();
this.priceTextBox = new System.Windows.Forms.TextBox();
this.modelTextBox = new System.Windows.Forms.TextBox();
this.brandTextBox = new System.Windows.Forms.TextBox();
this.promptPriceLabel = new System.Windows.Forms.Label();
this.promptModelLabel = new System.Windows.Forms.Label();
this.promptBrandLabel = new System.Windows.Forms.Label();
this.listGroupBox = new System.Windows.Forms.GroupBox();
this.phoneListBox = new System.Windows.Forms.ListBox();
this.addPhoneButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.enterDataGroupBox.SuspendLayout();
this.listGroupBox.SuspendLayout();
this.SuspendLayout();
//
// enterDataGroupBox
//
this.enterDataGroupBox.Controls.Add(this.addPhoneButton);
this.enterDataGroupBox.Controls.Add(this.priceTextBox);
this.enterDataGroupBox.Controls.Add(this.modelTextBox);
this.enterDataGroupBox.Controls.Add(this.brandTextBox);
this.enterDataGroupBox.Controls.Add(this.promptPriceLabel);
this.enterDataGroupBox.Controls.Add(this.promptModelLabel);
this.enterDataGroupBox.Controls.Add(this.promptBrandLabel);
this.enterDataGroupBox.Location = new System.Drawing.Point(12, 11);
this.enterDataGroupBox.Name = "enterDataGroupBox";
this.enterDataGroupBox.Size = new System.Drawing.Size(186, 142);
this.enterDataGroupBox.TabIndex = 5;
this.enterDataGroupBox.TabStop = false;
this.enterDataGroupBox.Text = "Enter Cell Phone Data";
//
// priceTextBox
//
this.priceTextBox.Location = new System.Drawing.Point(62, 74);
this.priceTextBox.Name = "priceTextBox";
this.priceTextBox.Size = new System.Drawing.Size(100, 20);
this.priceTextBox.TabIndex = 5;
//
// modelTextBox
//
this.modelTextBox.Location = new System.Drawing.Point(62, 48);
this.modelTextBox.Name = "modelTextBox";
this.modelTextBox.Size = new System.Drawing.Size(100, 20);
this.modelTextBox.TabIndex = 4;
//
// brandTextBox
//
this.brandTextBox.Location = new System.Drawing.Point(62, 22);
this.brandTextBox.Name = "brandTextBox";
this.brandTextBox.Size = new System.Drawing.Size(100, 20);
this.brandTextBox.TabIndex = 3;
//
// promptPriceLabel
//
this.promptPriceLabel.AutoSize = true;
this.promptPriceLabel.Location = new System.Drawing.Point(22, 77);
this.promptPriceLabel.Name = "promptPriceLabel";
this.promptPriceLabel.Size = new System.Drawing.Size(34, 13);
this.promptPriceLabel.TabIndex = 2;
this.promptPriceLabel.Text = "Price:";
//
// promptModelLabel
//
this.promptModelLabel.AutoSize = true;
this.promptModelLabel.Location = new System.Drawing.Point(17, 52);
this.promptModelLabel.Name = "promptModelLabel";
this.promptModelLabel.Size = new System.Drawing.Size(39, 13);
this.promptModelLabel.TabIndex = 1;
this.promptModelLabel.Text = "Model:";
//
// promptBrandLabel
//
this.promptBrandLabel.AutoSize = true;
this.promptBrandLabel.Location = new System.Drawing.Point(18, 25);
this.promptBrandLabel.Name = "promptBrandLabel";
this.promptBrandLabel.Size = new System.Drawing.Size(38, 13);
this.promptBrandLabel.TabIndex = 0;
this.promptBrandLabel.Text = "Brand:";
//
// listGroupBox
//
this.listGroupBox.Controls.Add(this.phoneListBox);
this.listGroupBox.Location = new System.Drawing.Point(217, 11);
this.listGroupBox.Name = "listGroupBox";
this.listGroupBox.Size = new System.Drawing.Size(200, 142);
this.listGroupBox.TabIndex = 8;
this.listGroupBox.TabStop = false;
this.listGroupBox.Text = "Select a Phone";
//
// phoneListBox
//
this.phoneListBox.FormattingEnabled = true;
this.phoneListBox.Location = new System.Drawing.Point(21, 20);
this.phoneListBox.Name = "phoneListBox";
this.phoneListBox.Size = new System.Drawing.Size(158, 108);
this.phoneListBox.TabIndex = 8;
//
// addPhoneButton
//
this.addPhoneButton.Location = new System.Drawing.Point(56, 106);
this.addPhoneButton.Name = "addPhoneButton";
this.addPhoneButton.Size = new System.Drawing.Size(75, 23);
this.addPhoneButton.TabIndex = 7;
this.addPhoneButton.Text = "Add Phone";
this.addPhoneButton.UseVisualStyleBackColor = true;
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(177, 165);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 9;
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(429, 198);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.listGroupBox);
this.Controls.Add(this.enterDataGroupBox);
this.Name = "Form1";
this.Text = "Cell Phone Inventory";
this.enterDataGroupBox.ResumeLayout(false);
this.enterDataGroupBox.PerformLayout();
this.listGroupBox.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox enterDataGroupBox;
private System.Windows.Forms.Button addPhoneButton;
private System.Windows.Forms.TextBox priceTextBox;
private System.Windows.Forms.TextBox modelTextBox;
private System.Windows.Forms.TextBox brandTextBox;
private System.Windows.Forms.Label promptPriceLabel;
private System.Windows.Forms.Label promptModelLabel;
private System.Windows.Forms.Label promptBrandLabel;
private System.Windows.Forms.GroupBox listGroupBox;
private System.Windows.Forms.ListBox phoneListBox;
private System.Windows.Forms.Button exitButton;
}
}