-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm12.Designer.cs
More file actions
126 lines (121 loc) · 4.16 KB
/
Copy pathForm12.Designer.cs
File metadata and controls
126 lines (121 loc) · 4.16 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
namespace FlightReservation
{
partial class Form12
{
/// <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()
{
button1 = new Button();
button2 = new Button();
button3 = new Button();
button4 = new Button();
button5 = new Button();
textBox1 = new TextBox();
SuspendLayout();
//
// button1
//
button1.Font = new Font("Segoe UI", 12F);
button1.Location = new Point(12, 43);
button1.Name = "button1";
button1.Size = new Size(185, 37);
button1.TabIndex = 0;
button1.Text = "Go To Admin Page";
button1.UseVisualStyleBackColor = true;
//
// button2
//
button2.Font = new Font("Segoe UI", 14F);
button2.Location = new Point(103, 192);
button2.Name = "button2";
button2.Size = new Size(216, 47);
button2.TabIndex = 1;
button2.Text = "Add Flight";
button2.UseVisualStyleBackColor = true;
//
// button3
//
button3.Font = new Font("Segoe UI", 14F);
button3.Location = new Point(376, 192);
button3.Name = "button3";
button3.Size = new Size(216, 47);
button3.TabIndex = 2;
button3.Text = "Update Flight";
button3.UseVisualStyleBackColor = true;
//
// button4
//
button4.Font = new Font("Segoe UI", 14F);
button4.Location = new Point(103, 336);
button4.Name = "button4";
button4.Size = new Size(216, 47);
button4.TabIndex = 3;
button4.Text = "Add AirCraft";
button4.UseVisualStyleBackColor = true;
//
// button5
//
button5.Font = new Font("Segoe UI", 14F);
button5.Location = new Point(376, 336);
button5.Name = "button5";
button5.Size = new Size(216, 47);
button5.TabIndex = 4;
button5.Text = "Update AirCraft";
button5.UseVisualStyleBackColor = true;
//
// textBox1
//
textBox1.Font = new Font("Segoe UI", 14F);
textBox1.Location = new Point(84, 102);
textBox1.Name = "textBox1";
textBox1.ReadOnly = true;
textBox1.Size = new Size(545, 32);
textBox1.TabIndex = 5;
textBox1.Text = "Welcome To SignUp Page";
textBox1.TextAlign = HorizontalAlignment.Center;
//
// Form12
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(718, 450);
Controls.Add(textBox1);
Controls.Add(button5);
Controls.Add(button4);
Controls.Add(button3);
Controls.Add(button2);
Controls.Add(button1);
Name = "Form12";
Text = "Admin Page";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Button button2;
private Button button3;
private Button button4;
private Button button5;
private TextBox textBox1;
}
}