Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace WindowsFormsApp2
- {
- 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.menuStrip1 = new System.Windows.Forms.MenuStrip();
- this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.feedbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.printProductListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.panel1 = new System.Windows.Forms.Panel();
- this.Search = new System.Windows.Forms.Button();
- this.SearchName = new System.Windows.Forms.TextBox();
- this.NameLookUp = new System.Windows.Forms.Label();
- this.SearchResults = new System.Windows.Forms.ListBox();
- this.eventLog1 = new System.Diagnostics.EventLog();
- this.InventoryList = new System.Windows.Forms.ListView();
- this.productCol = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.productPri = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.productCos = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.productSto = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.Stock = new System.Windows.Forms.Label();
- this.Submit = new System.Windows.Forms.Button();
- this.NameBox = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.Price = new System.Windows.Forms.TextBox();
- this.Cost = new System.Windows.Forms.TextBox();
- this.StockBox = new System.Windows.Forms.TextBox();
- this.menuStrip1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.eventLog1)).BeginInit();
- this.SuspendLayout();
- //
- // menuStrip1
- //
- this.menuStrip1.BackColor = System.Drawing.SystemColors.Menu;
- this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.helpToolStripMenuItem,
- this.viewToolStripMenuItem,
- this.quitToolStripMenuItem});
- this.menuStrip1.Location = new System.Drawing.Point(0, 0);
- this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Size = new System.Drawing.Size(687, 28);
- this.menuStrip1.TabIndex = 1;
- this.menuStrip1.Text = "menuStrip1";
- //
- // helpToolStripMenuItem
- //
- this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.aboutToolStripMenuItem,
- this.feedbackToolStripMenuItem,
- this.printProductListToolStripMenuItem});
- this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
- this.helpToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
- this.helpToolStripMenuItem.Text = "Help";
- //
- // aboutToolStripMenuItem
- //
- this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
- this.aboutToolStripMenuItem.Size = new System.Drawing.Size(195, 26);
- this.aboutToolStripMenuItem.Text = "About";
- //
- // feedbackToolStripMenuItem
- //
- this.feedbackToolStripMenuItem.Name = "feedbackToolStripMenuItem";
- this.feedbackToolStripMenuItem.Size = new System.Drawing.Size(195, 26);
- this.feedbackToolStripMenuItem.Text = "Feedback";
- //
- // printProductListToolStripMenuItem
- //
- this.printProductListToolStripMenuItem.Name = "printProductListToolStripMenuItem";
- this.printProductListToolStripMenuItem.Size = new System.Drawing.Size(195, 26);
- this.printProductListToolStripMenuItem.Text = "Print Product List";
- //
- // viewToolStripMenuItem
- //
- this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
- this.viewToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
- this.viewToolStripMenuItem.Text = "View";
- //
- // quitToolStripMenuItem
- //
- this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
- this.quitToolStripMenuItem.Size = new System.Drawing.Size(49, 24);
- this.quitToolStripMenuItem.Text = "Quit";
- //
- // splitContainer1
- //
- this.splitContainer1.Location = new System.Drawing.Point(12, 245);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.panel1);
- this.splitContainer1.Panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.SplitContainer1_Panel1_Paint);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.SearchResults);
- this.splitContainer1.Size = new System.Drawing.Size(644, 317);
- this.splitContainer1.SplitterDistance = 214;
- this.splitContainer1.TabIndex = 3;
- //
- // panel1
- //
- this.panel1.Controls.Add(this.Search);
- this.panel1.Controls.Add(this.SearchName);
- this.panel1.Controls.Add(this.NameLookUp);
- this.panel1.Location = new System.Drawing.Point(9, 3);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(200, 100);
- this.panel1.TabIndex = 0;
- //
- // Search
- //
- this.Search.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.Search.Location = new System.Drawing.Point(9, 41);
- this.Search.Name = "Search";
- this.Search.Size = new System.Drawing.Size(160, 24);
- this.Search.TabIndex = 2;
- this.Search.Text = "Search";
- this.Search.UseVisualStyleBackColor = true;
- this.Search.Click += new System.EventHandler(this.Search_Click);
- //
- // SearchName
- //
- this.SearchName.Location = new System.Drawing.Point(66, 1);
- this.SearchName.Name = "SearchName";
- this.SearchName.Size = new System.Drawing.Size(103, 22);
- this.SearchName.TabIndex = 1;
- //
- // NameLookUp
- //
- this.NameLookUp.AutoSize = true;
- this.NameLookUp.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.NameLookUp.Location = new System.Drawing.Point(6, 4);
- this.NameLookUp.Name = "NameLookUp";
- this.NameLookUp.Size = new System.Drawing.Size(54, 17);
- this.NameLookUp.TabIndex = 0;
- this.NameLookUp.Text = "Name:";
- //
- // SearchResults
- //
- this.SearchResults.FormattingEnabled = true;
- this.SearchResults.ItemHeight = 16;
- this.SearchResults.Location = new System.Drawing.Point(4, 0);
- this.SearchResults.Name = "SearchResults";
- this.SearchResults.Size = new System.Drawing.Size(419, 308);
- this.SearchResults.TabIndex = 0;
- //
- // eventLog1
- //
- this.eventLog1.SynchronizingObject = this;
- //
- // InventoryList
- //
- this.InventoryList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
- this.productCol,
- this.productPri,
- this.productCos,
- this.productSto});
- this.InventoryList.Location = new System.Drawing.Point(234, 32);
- this.InventoryList.Name = "InventoryList";
- this.InventoryList.Size = new System.Drawing.Size(419, 208);
- this.InventoryList.TabIndex = 4;
- this.InventoryList.UseCompatibleStateImageBehavior = false;
- this.InventoryList.View = System.Windows.Forms.View.Details;
- this.InventoryList.SelectedIndexChanged += new System.EventHandler(this.ListView1_SelectedIndexChanged);
- //
- // productCol
- //
- this.productCol.Text = "Name";
- this.productCol.Width = 81;
- //
- // productPri
- //
- this.productPri.Text = "Price";
- this.productPri.Width = 85;
- //
- // productCos
- //
- this.productCos.Text = "Cost";
- this.productCos.Width = 90;
- //
- // productSto
- //
- this.productSto.Text = "Stock";
- this.productSto.Width = 119;
- //
- // Stock
- //
- this.Stock.AutoSize = true;
- this.Stock.Location = new System.Drawing.Point(33, 162);
- this.Stock.Name = "Stock";
- this.Stock.Size = new System.Drawing.Size(47, 17);
- this.Stock.TabIndex = 16;
- this.Stock.Text = "Stock:";
- //
- // Submit
- //
- this.Submit.Location = new System.Drawing.Point(39, 211);
- this.Submit.Name = "Submit";
- this.Submit.Size = new System.Drawing.Size(151, 23);
- this.Submit.TabIndex = 15;
- this.Submit.Text = "Submit";
- this.Submit.UseVisualStyleBackColor = true;
- //
- // NameBox
- //
- this.NameBox.Location = new System.Drawing.Point(87, 75);
- this.NameBox.Name = "NameBox";
- this.NameBox.Size = new System.Drawing.Size(100, 22);
- this.NameBox.TabIndex = 12;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(40, 136);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(40, 17);
- this.label3.TabIndex = 11;
- this.label3.Text = "Cost:";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(36, 108);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(44, 17);
- this.label2.TabIndex = 10;
- this.label2.Text = "Price:";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(31, 78);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(49, 17);
- this.label1.TabIndex = 9;
- this.label1.Text = "Name:";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.Location = new System.Drawing.Point(30, 32);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(107, 17);
- this.label4.TabIndex = 18;
- this.label4.Text = "Product Entry";
- this.label4.Click += new System.EventHandler(this.Label4_Click);
- //
- // Price
- //
- this.Price.Location = new System.Drawing.Point(87, 103);
- this.Price.Name = "Price";
- this.Price.Size = new System.Drawing.Size(100, 22);
- this.Price.TabIndex = 19;
- //
- // Cost
- //
- this.Cost.Location = new System.Drawing.Point(87, 131);
- this.Cost.Name = "Cost";
- this.Cost.Size = new System.Drawing.Size(100, 22);
- this.Cost.TabIndex = 20;
- this.Cost.TextChanged += new System.EventHandler(this.TextBox2_TextChanged);
- //
- // StockBox
- //
- this.StockBox.Location = new System.Drawing.Point(87, 159);
- this.StockBox.Name = "StockBox";
- this.StockBox.Size = new System.Drawing.Size(100, 22);
- this.StockBox.TabIndex = 21;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(687, 582);
- this.Controls.Add(this.StockBox);
- this.Controls.Add(this.Cost);
- this.Controls.Add(this.Price);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.Stock);
- this.Controls.Add(this.Submit);
- this.Controls.Add(this.NameBox);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.InventoryList);
- this.Controls.Add(this.splitContainer1);
- this.Controls.Add(this.menuStrip1);
- this.MainMenuStrip = this.menuStrip1;
- this.Name = "Form1";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.menuStrip1.ResumeLayout(false);
- this.menuStrip1.PerformLayout();
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.eventLog1)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.MenuStrip menuStrip1;
- private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem feedbackToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.ToolStripMenuItem printProductListToolStripMenuItem;
- private System.Windows.Forms.Button Search;
- private System.Windows.Forms.TextBox SearchName;
- private System.Windows.Forms.Label NameLookUp;
- private System.Windows.Forms.ListBox SearchResults;
- private System.Diagnostics.EventLog eventLog1;
- private System.Windows.Forms.ListView InventoryList;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label Stock;
- private System.Windows.Forms.TextBox NameBox;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- public System.Windows.Forms.Button Submit;
- private System.Windows.Forms.TextBox StockBox;
- private System.Windows.Forms.TextBox Cost;
- private System.Windows.Forms.TextBox Price;
- private System.Windows.Forms.ColumnHeader productCol;
- private System.Windows.Forms.ColumnHeader productPri;
- private System.Windows.Forms.ColumnHeader productCos;
- private System.Windows.Forms.ColumnHeader productSto;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement