-
Notifications
You must be signed in to change notification settings - Fork 0
/
InventoryMenu.Designer.cs
129 lines (122 loc) · 5.8 KB
/
InventoryMenu.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
namespace InventoryManagement
{
partial class InventoryMenu
{
/// <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 Component 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.btnLogout = new System.Windows.Forms.Button();
this.btnBack = new System.Windows.Forms.Button();
this.btnBrands = new System.Windows.Forms.Button();
this.btnCategorie = new System.Windows.Forms.Button();
this.btnProduct = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnLogout
//
this.btnLogout.BackColor = System.Drawing.Color.Red;
this.btnLogout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnLogout.Location = new System.Drawing.Point(0, 371);
this.btnLogout.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
this.btnLogout.Name = "btnLogout";
this.btnLogout.Size = new System.Drawing.Size(188, 67);
this.btnLogout.TabIndex = 11;
this.btnLogout.Text = "Logout";
this.btnLogout.UseVisualStyleBackColor = false;
this.btnLogout.Click += new System.EventHandler(this.btnLogout_Click);
//
// btnBack
//
this.btnBack.BackColor = System.Drawing.Color.SpringGreen;
this.btnBack.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnBack.Location = new System.Drawing.Point(0, 306);
this.btnBack.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
this.btnBack.Name = "btnBack";
this.btnBack.Size = new System.Drawing.Size(188, 66);
this.btnBack.TabIndex = 10;
this.btnBack.Text = "Back";
this.btnBack.UseVisualStyleBackColor = false;
this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
//
// btnBrands
//
this.btnBrands.BackColor = System.Drawing.Color.Cyan;
this.btnBrands.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnBrands.Location = new System.Drawing.Point(0, 134);
this.btnBrands.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
this.btnBrands.Name = "btnBrands";
this.btnBrands.Size = new System.Drawing.Size(188, 67);
this.btnBrands.TabIndex = 8;
this.btnBrands.Text = "Brands";
this.btnBrands.UseVisualStyleBackColor = false;
this.btnBrands.Click += new System.EventHandler(this.btnBrands_Click);
//
// btnCategorie
//
this.btnCategorie.BackColor = System.Drawing.Color.Cyan;
this.btnCategorie.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnCategorie.Location = new System.Drawing.Point(0, 67);
this.btnCategorie.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
this.btnCategorie.Name = "btnCategorie";
this.btnCategorie.Size = new System.Drawing.Size(188, 67);
this.btnCategorie.TabIndex = 7;
this.btnCategorie.Text = "Categories";
this.btnCategorie.UseVisualStyleBackColor = false;
this.btnCategorie.Click += new System.EventHandler(this.btnCategorie_Click);
//
// btnProduct
//
this.btnProduct.BackColor = System.Drawing.Color.Cyan;
this.btnProduct.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnProduct.Location = new System.Drawing.Point(0, 0);
this.btnProduct.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
this.btnProduct.Name = "btnProduct";
this.btnProduct.Size = new System.Drawing.Size(188, 67);
this.btnProduct.TabIndex = 6;
this.btnProduct.Text = "Product";
this.btnProduct.UseVisualStyleBackColor = false;
this.btnProduct.Click += new System.EventHandler(this.btnProduct_Click);
//
// InventoryMenu
//
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.btnLogout);
this.Controls.Add(this.btnBack);
this.Controls.Add(this.btnBrands);
this.Controls.Add(this.btnCategorie);
this.Controls.Add(this.btnProduct);
this.Font = new System.Drawing.Font("Franklin Gothic Demi", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "InventoryMenu";
this.Size = new System.Drawing.Size(188, 493);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnLogout;
private System.Windows.Forms.Button btnBack;
private System.Windows.Forms.Button btnBrands;
private System.Windows.Forms.Button btnCategorie;
private System.Windows.Forms.Button btnProduct;
}
}