-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookLoanSearch.Designer.cs
More file actions
181 lines (176 loc) · 7.35 KB
/
BookLoanSearch.Designer.cs
File metadata and controls
181 lines (176 loc) · 7.35 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
namespace PBLDatabaseFrontend
{
partial class BookLoanSearch
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BookLoanSearch));
ListView = new ListView();
btnBack = new Button();
cbTables = new ComboBox();
lblTableSelect = new Label();
lblSearchFilter = new Label();
cbSearchFilter = new ComboBox();
cbSearchItem = new ComboBox();
btnClearSearch = new Button();
btnLoanReturn = new Button();
SuspendLayout();
//
// ListView
//
ListView.Dock = DockStyle.Left;
ListView.FullRowSelect = true;
ListView.Location = new Point(0, 0);
ListView.MultiSelect = false;
ListView.Name = "ListView";
ListView.Size = new Size(462, 490);
ListView.TabIndex = 0;
ListView.UseCompatibleStateImageBehavior = false;
ListView.View = View.Details;
//
// btnBack
//
btnBack.Font = new Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point);
btnBack.Location = new Point(468, 12);
btnBack.Name = "btnBack";
btnBack.Size = new Size(80, 55);
btnBack.TabIndex = 9;
btnBack.Text = "Back";
btnBack.UseVisualStyleBackColor = true;
btnBack.Click += btnBack_Click;
//
// cbTables
//
cbTables.DropDownStyle = ComboBoxStyle.DropDownList;
cbTables.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
cbTables.FormattingEnabled = true;
cbTables.Location = new Point(568, 38);
cbTables.Name = "cbTables";
cbTables.Size = new Size(181, 29);
cbTables.TabIndex = 8;
cbTables.SelectedIndexChanged += cbTables_SelectedIndexChanged;
//
// lblTableSelect
//
lblTableSelect.Font = new Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point);
lblTableSelect.Location = new Point(568, 12);
lblTableSelect.Name = "lblTableSelect";
lblTableSelect.Size = new Size(181, 23);
lblTableSelect.TabIndex = 7;
lblTableSelect.Text = "Select Table:";
lblTableSelect.TextAlign = ContentAlignment.MiddleCenter;
//
// lblSearchFilter
//
lblSearchFilter.Font = new Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point);
lblSearchFilter.Location = new Point(468, 95);
lblSearchFilter.Name = "lblSearchFilter";
lblSearchFilter.Size = new Size(139, 23);
lblSearchFilter.TabIndex = 10;
lblSearchFilter.Text = "Search By:";
lblSearchFilter.TextAlign = ContentAlignment.MiddleCenter;
//
// cbSearchFilter
//
cbSearchFilter.DropDownStyle = ComboBoxStyle.DropDownList;
cbSearchFilter.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
cbSearchFilter.FormattingEnabled = true;
cbSearchFilter.Location = new Point(610, 92);
cbSearchFilter.Name = "cbSearchFilter";
cbSearchFilter.Size = new Size(139, 29);
cbSearchFilter.TabIndex = 11;
cbSearchFilter.SelectedIndexChanged += cbSearchFilter_SelectedIndexChanged;
//
// cbSearchItem
//
cbSearchItem.DropDownStyle = ComboBoxStyle.DropDownList;
cbSearchItem.Enabled = false;
cbSearchItem.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
cbSearchItem.FormattingEnabled = true;
cbSearchItem.Location = new Point(468, 144);
cbSearchItem.Name = "cbSearchItem";
cbSearchItem.Size = new Size(281, 29);
cbSearchItem.TabIndex = 12;
cbSearchItem.SelectedIndexChanged += cbSearchItem_SelectedIndexChanged;
//
// btnClearSearch
//
btnClearSearch.Font = new Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point);
btnClearSearch.Location = new Point(645, 197);
btnClearSearch.Name = "btnClearSearch";
btnClearSearch.Size = new Size(104, 55);
btnClearSearch.TabIndex = 14;
btnClearSearch.Text = "Clear Search";
btnClearSearch.UseVisualStyleBackColor = true;
btnClearSearch.Click += btnClearSearch_Click;
//
// btnLoanReturn
//
btnLoanReturn.Enabled = false;
btnLoanReturn.Font = new Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point);
btnLoanReturn.Location = new Point(468, 197);
btnLoanReturn.Name = "btnLoanReturn";
btnLoanReturn.Size = new Size(124, 55);
btnLoanReturn.TabIndex = 15;
btnLoanReturn.Text = "Register Book Return";
btnLoanReturn.UseVisualStyleBackColor = true;
btnLoanReturn.Click += btnLoanReturn_Click;
//
// BookLoanSearch
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(761, 490);
Controls.Add(btnLoanReturn);
Controls.Add(btnClearSearch);
Controls.Add(cbSearchItem);
Controls.Add(cbSearchFilter);
Controls.Add(lblSearchFilter);
Controls.Add(btnBack);
Controls.Add(cbTables);
Controls.Add(lblTableSelect);
Controls.Add(ListView);
FormBorderStyle = FormBorderStyle.FixedSingle;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "BookLoanSearch";
Text = "Book/Loan Search";
FormClosing += BookLoanSearch_FormClosing;
Load += BookLoanSearch_Load;
ResumeLayout(false);
}
#endregion
private ListView ListView;
private Button btnBack;
private ComboBox cbTables;
private Label lblTableSelect;
private Label lblSearchFilter;
private ComboBox cbSearchFilter;
private ComboBox cbSearchItem;
private Label lblSearchItem;
private Button btnClearSearch;
private Button btnLoanReturn;
}
}