-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInventoryAddRem.Designer.cs
122 lines (116 loc) · 5.91 KB
/
InventoryAddRem.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
namespace DB_Project
{
partial class InventoryAddRem
{
/// <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.panel1 = new System.Windows.Forms.Panel();
this.label4 = new System.Windows.Forms.Label();
this.gunaButton2 = new Guna.UI.WinForms.GunaButton();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Ivory;
this.panel1.Controls.Add(this.dataGridView1);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.gunaButton2);
this.panel1.Location = new System.Drawing.Point(144, 49);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(513, 353);
this.panel1.TabIndex = 23;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Beige;
this.label4.Font = new System.Drawing.Font("Georgia", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.Teal;
this.label4.Location = new System.Drawing.Point(118, 18);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(273, 25);
this.label4.TabIndex = 20;
this.label4.Text = "Remove/ADD Inventory";
//
// gunaButton2
//
this.gunaButton2.Animated = true;
this.gunaButton2.AnimationHoverSpeed = 0.07F;
this.gunaButton2.AnimationSpeed = 0.03F;
this.gunaButton2.BackColor = System.Drawing.Color.Transparent;
this.gunaButton2.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(143)))), ((int)(((byte)(255)))));
this.gunaButton2.BorderColor = System.Drawing.Color.Black;
this.gunaButton2.DialogResult = System.Windows.Forms.DialogResult.None;
this.gunaButton2.FocusedColor = System.Drawing.Color.Empty;
this.gunaButton2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.gunaButton2.ForeColor = System.Drawing.Color.White;
this.gunaButton2.Image = null;
this.gunaButton2.ImageSize = new System.Drawing.Size(20, 20);
this.gunaButton2.Location = new System.Drawing.Point(139, 261);
this.gunaButton2.Name = "gunaButton2";
this.gunaButton2.OnHoverBaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(143)))), ((int)(((byte)(255)))));
this.gunaButton2.OnHoverBorderColor = System.Drawing.Color.Black;
this.gunaButton2.OnHoverForeColor = System.Drawing.Color.White;
this.gunaButton2.OnHoverImage = null;
this.gunaButton2.OnPressedColor = System.Drawing.Color.Black;
this.gunaButton2.Radius = 20;
this.gunaButton2.Size = new System.Drawing.Size(217, 42);
this.gunaButton2.TabIndex = 16;
this.gunaButton2.Text = "Add/Rem Item";
this.gunaButton2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Location = new System.Drawing.Point(75, 100);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView1.Size = new System.Drawing.Size(336, 143);
this.dataGridView1.TabIndex = 21;
//
// InventoryAddRem
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Teal;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.panel1);
this.Name = "InventoryAddRem";
this.Text = "InventoryAddRem";
this.Load += new System.EventHandler(this.InventoryAddRem_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label4;
private Guna.UI.WinForms.GunaButton gunaButton2;
private System.Windows.Forms.DataGridView dataGridView1;
}
}