-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerateCourseReportForm.Designer.cs
More file actions
66 lines (64 loc) · 2.28 KB
/
GenerateCourseReportForm.Designer.cs
File metadata and controls
66 lines (64 loc) · 2.28 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
namespace TinyCollegeGUI
{
partial class GenerateCourseReportForm
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.Label lblCriteria;
private System.Windows.Forms.TextBox txtCriteria;
private System.Windows.Forms.Button btnGenerateReport;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
lblCriteria = new Label();
txtCriteria = new TextBox();
btnGenerateReport = new Button();
SuspendLayout();
//
// lblCriteria
//
lblCriteria.AutoSize = true;
lblCriteria.Location = new Point(12, 30);
lblCriteria.Name = "lblCriteria";
lblCriteria.Size = new Size(115, 21);
lblCriteria.TabIndex = 0;
lblCriteria.Text = "Search Criteria:";
//
// txtCriteria
//
txtCriteria.Location = new Point(130, 30);
txtCriteria.Name = "txtCriteria";
txtCriteria.Size = new Size(200, 29);
txtCriteria.TabIndex = 1;
//
// btnGenerateReport
//
btnGenerateReport.Location = new Point(130, 70);
btnGenerateReport.Name = "btnGenerateReport";
btnGenerateReport.Size = new Size(150, 30);
btnGenerateReport.TabIndex = 2;
btnGenerateReport.Text = "Generate Report";
btnGenerateReport.UseVisualStyleBackColor = true;
btnGenerateReport.Click += btnGenerateReport_Click;
//
// GenerateCourseReportForm
//
BackColor = SystemColors.ActiveCaption;
ClientSize = new Size(400, 150);
Controls.Add(lblCriteria);
Controls.Add(txtCriteria);
Controls.Add(btnGenerateReport);
Name = "GenerateCourseReportForm";
Text = "Generate Course Report";
Load += GenerateCourseReportForm_Load;
ResumeLayout(false);
PerformLayout();
}
}
}