-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm14.Designer.cs
More file actions
118 lines (106 loc) · 5.22 KB
/
Copy pathForm14.Designer.cs
File metadata and controls
118 lines (106 loc) · 5.22 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
using System.Windows.Forms;
namespace H1
{
partial class Form14
{
private System.ComponentModel.IContainer components = null;
private DataGridView dataGridView1;
private TextBox txtSearch;
private Button btnSearch;
private Button btnUpdateStatus;
private Button btnViewDetails;
private Button btnRefresh;
private Label label1;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.txtSearch = new System.Windows.Forms.TextBox();
this.btnSearch = new System.Windows.Forms.Button();
this.btnUpdateStatus = new System.Windows.Forms.Button();
this.btnViewDetails = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.btnRefresh = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
// dataGridView1
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Location = new System.Drawing.Point(12, 60);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView1.Size = new System.Drawing.Size(760, 380);
this.dataGridView1.TabIndex = 0;
// txtSearch
this.txtSearch.Location = new System.Drawing.Point(12, 30);
this.txtSearch.Name = "txtSearch";
this.txtSearch.Size = new System.Drawing.Size(200, 20);
this.txtSearch.TabIndex = 1;
// btnSearch
this.btnSearch.Location = new System.Drawing.Point(220, 28);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(75, 23);
this.btnSearch.TabIndex = 2;
this.btnSearch.Text = "Search";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
// btnUpdateStatus
this.btnUpdateStatus.Location = new System.Drawing.Point(520, 28);
this.btnUpdateStatus.Name = "btnUpdateStatus";
this.btnUpdateStatus.Size = new System.Drawing.Size(120, 23);
this.btnUpdateStatus.TabIndex = 3;
this.btnUpdateStatus.Text = "Update Status";
this.btnUpdateStatus.UseVisualStyleBackColor = true;
this.btnUpdateStatus.Click += new System.EventHandler(this.btnUpdateStatus_Click);
// btnViewDetails
this.btnViewDetails.Location = new System.Drawing.Point(650, 28);
this.btnViewDetails.Name = "btnViewDetails";
this.btnViewDetails.Size = new System.Drawing.Size(120, 23);
this.btnViewDetails.TabIndex = 4;
this.btnViewDetails.Text = "View Details";
this.btnViewDetails.UseVisualStyleBackColor = true;
this.btnViewDetails.Click += new System.EventHandler(this.btnViewDetails_Click);
// label1
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(44, 13);
this.label1.TabIndex = 5;
this.label1.Text = "Search:";
// btnRefresh
this.btnRefresh.Location = new System.Drawing.Point(390, 28);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(120, 23);
this.btnRefresh.TabIndex = 6;
this.btnRefresh.Text = "Refresh";
this.btnRefresh.UseVisualStyleBackColor = true;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
// Form14
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 461);
this.Controls.Add(this.btnRefresh);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnViewDetails);
this.Controls.Add(this.btnUpdateStatus);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.txtSearch);
this.Controls.Add(this.dataGridView1);
this.Name = "Form14";
this.Text = "Booking Management";
this.Load += new System.EventHandler(this.Form14_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
}
}