-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReturn Equipment.Designer.cs
More file actions
142 lines (137 loc) · 5.33 KB
/
Copy pathReturn Equipment.Designer.cs
File metadata and controls
142 lines (137 loc) · 5.33 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
namespace ECS_Equipment_Checkout_System
{
partial class ReturnEquipmentForm
{
/// <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()
{
lstEquipmentReturned = new ListBox();
btnReturn = new Button();
lblReturnEquipment = new Label();
lblReturnEquipmentID = new Label();
label3 = new Label();
txtReturnEquipment = new TextBox();
txtReturnEquipmentID = new TextBox();
btnReturnToDashboard = new Button();
SuspendLayout();
//
// lstEquipmentReturned
//
lstEquipmentReturned.FormattingEnabled = true;
lstEquipmentReturned.ItemHeight = 15;
lstEquipmentReturned.Location = new Point(434, 61);
lstEquipmentReturned.Name = "lstEquipmentReturned";
lstEquipmentReturned.ScrollAlwaysVisible = true;
lstEquipmentReturned.Size = new Size(254, 289);
lstEquipmentReturned.Sorted = true;
lstEquipmentReturned.TabIndex = 0;
//
// btnReturn
//
btnReturn.Location = new Point(197, 233);
btnReturn.Name = "btnReturn";
btnReturn.Size = new Size(75, 23);
btnReturn.TabIndex = 1;
btnReturn.Text = "Return Equipment";
btnReturn.UseVisualStyleBackColor = true;
btnReturn.Click += btnReturn_Click;
//
// lblReturnEquipment
//
lblReturnEquipment.AutoSize = true;
lblReturnEquipment.Location = new Point(145, 144);
lblReturnEquipment.Name = "lblReturnEquipment";
lblReturnEquipment.Size = new Size(68, 15);
lblReturnEquipment.TabIndex = 2;
lblReturnEquipment.Text = "Equipment:";
//
// lblReturnEquipmentID
//
lblReturnEquipmentID.AutoSize = true;
lblReturnEquipmentID.Location = new Point(145, 182);
lblReturnEquipmentID.Name = "lblReturnEquipmentID";
lblReturnEquipmentID.Size = new Size(82, 15);
lblReturnEquipmentID.TabIndex = 3;
lblReturnEquipmentID.Text = "Equipment ID:";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(145, 219);
label3.Name = "label3";
label3.Size = new Size(0, 15);
label3.TabIndex = 4;
//
// txtReturnEquipment
//
txtReturnEquipment.Location = new Point(233, 141);
txtReturnEquipment.Name = "txtReturnEquipment";
txtReturnEquipment.Size = new Size(100, 23);
txtReturnEquipment.TabIndex = 5;
//
// txtReturnEquipmentID
//
txtReturnEquipmentID.Location = new Point(233, 179);
txtReturnEquipmentID.Name = "txtReturnEquipmentID";
txtReturnEquipmentID.Size = new Size(100, 23);
txtReturnEquipmentID.TabIndex = 6;
//
// btnReturnToDashboard
//
btnReturnToDashboard.Location = new Point(175, 296);
btnReturnToDashboard.Name = "btnReturnToDashboard";
btnReturnToDashboard.Size = new Size(126, 23);
btnReturnToDashboard.TabIndex = 7;
btnReturnToDashboard.Text = "Return To Dashboard";
btnReturnToDashboard.UseVisualStyleBackColor = true;
btnReturnToDashboard.Click += btnReturnToDashboard_Click;
//
// ReturnEquipmentForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(btnReturnToDashboard);
Controls.Add(txtReturnEquipmentID);
Controls.Add(txtReturnEquipment);
Controls.Add(label3);
Controls.Add(lblReturnEquipmentID);
Controls.Add(lblReturnEquipment);
Controls.Add(btnReturn);
Controls.Add(lstEquipmentReturned);
Name = "ReturnEquipmentForm";
Text = "Return Equipment";
ResumeLayout(false);
PerformLayout();
}
#endregion
private ListBox lstEquipmentReturned;
private Button btnReturn;
private Label lblReturnEquipment;
private Label lblReturnEquipmentID;
private Label label3;
private TextBox txtReturnEquipment;
private TextBox txtReturnEquipmentID;
private Button btnReturnToDashboard;
}
}