-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm8.Designer.cs
More file actions
123 lines (118 loc) · 4.16 KB
/
Copy pathForm8.Designer.cs
File metadata and controls
123 lines (118 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
namespace FlightReservation
{
partial class Form8
{
/// <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();
textBox1 = new TextBox();
textBox2 = new TextBox();
label1 = new Label();
dataGridView1 = new DataGridView();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
SuspendLayout();
//
// button1
//
button1.Font = new Font("Segoe UI", 14F);
button1.Location = new Point(33, 23);
button1.Name = "button1";
button1.Size = new Size(89, 37);
button1.TabIndex = 0;
button1.Text = "Back";
button1.UseVisualStyleBackColor = true;
//
// button2
//
button2.Font = new Font("Segoe UI", 14F);
button2.Location = new Point(328, 190);
button2.Name = "button2";
button2.Size = new Size(105, 33);
button2.TabIndex = 1;
button2.Text = "Show";
button2.UseVisualStyleBackColor = true;
//
// textBox1
//
textBox1.Font = new Font("Segoe UI", 14F);
textBox1.Location = new Point(133, 70);
textBox1.Name = "textBox1";
textBox1.ReadOnly = true;
textBox1.Size = new Size(459, 32);
textBox1.TabIndex = 2;
textBox1.Text = "Enter Destination Name";
textBox1.TextAlign = HorizontalAlignment.Center;
//
// textBox2
//
textBox2.Location = new Point(375, 124);
textBox2.Name = "textBox2";
textBox2.Size = new Size(158, 23);
textBox2.TabIndex = 3;
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI", 14F);
label1.Location = new Point(206, 119);
label1.Name = "label1";
label1.Size = new Size(163, 25);
label1.TabIndex = 4;
label1.Text = "Destination Name";
//
// dataGridView1
//
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(24, 240);
dataGridView1.Name = "dataGridView1";
dataGridView1.Size = new Size(733, 125);
dataGridView1.TabIndex = 5;
//
// Form8
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(784, 450);
Controls.Add(dataGridView1);
Controls.Add(label1);
Controls.Add(textBox2);
Controls.Add(textBox1);
Controls.Add(button2);
Controls.Add(button1);
Name = "Form8";
Text = "Search By Destination";
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Button button2;
private TextBox textBox1;
private TextBox textBox2;
private Label label1;
private DataGridView dataGridView1;
}
}