-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEVENTDETAILS.Designer.cs
119 lines (114 loc) · 4.81 KB
/
EVENTDETAILS.Designer.cs
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
namespace Db_project
{
partial class EVENT_DETAILS
{
/// <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()
{
Label label1;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EVENT_DETAILS));
menuButton = new PictureBox();
dataGridView1 = new DataGridView();
button1 = new Button();
label1 = new Label();
((System.ComponentModel.ISupportInitialize)menuButton).BeginInit();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.BackColor = Color.Transparent;
label1.Font = new Font("Bernard MT Condensed", 18F, FontStyle.Bold, GraphicsUnit.Point);
label1.Location = new Point(50, 43);
label1.Name = "label1";
label1.Size = new Size(189, 36);
label1.TabIndex = 7;
label1.Text = "EVENT DETAILS";
label1.TextAlign = ContentAlignment.TopCenter;
label1.Click += label1_Click;
//
// menuButton
//
menuButton.BackColor = Color.Transparent;
menuButton.Cursor = Cursors.Hand;
menuButton.Image = (Image)resources.GetObject("menuButton.Image");
menuButton.Location = new Point(1075, 43);
menuButton.Margin = new Padding(2, 3, 2, 3);
menuButton.Name = "menuButton";
menuButton.Size = new Size(34, 37);
menuButton.SizeMode = PictureBoxSizeMode.StretchImage;
menuButton.TabIndex = 8;
menuButton.TabStop = false;
menuButton.Click += menuButton_Click;
//
// dataGridView1
//
dataGridView1.BackgroundColor = Color.Plum;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(146, 136);
dataGridView1.Name = "dataGridView1";
dataGridView1.RowHeadersWidth = 51;
dataGridView1.RowTemplate.Height = 29;
dataGridView1.Size = new Size(808, 495);
dataGridView1.TabIndex = 6;
dataGridView1.CellContentClick += dataGridView1_CellContentClick;
//
// button1
//
button1.BackColor = Color.SlateBlue;
button1.BackgroundImageLayout = ImageLayout.Stretch;
button1.Font = new Font("Showcard Gothic", 9F, FontStyle.Regular, GraphicsUnit.Point);
button1.Location = new Point(248, 679);
button1.Name = "button1";
button1.Size = new Size(661, 35);
button1.TabIndex = 9;
button1.Text = "Retrieve Data";
button1.UseVisualStyleBackColor = false;
button1.Click += button1_Click;
//
// EVENT_DETAILS
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
BackgroundImage = (Image)resources.GetObject("$this.BackgroundImage");
BackgroundImageLayout = ImageLayout.Center;
ClientSize = new Size(1163, 793);
Controls.Add(button1);
Controls.Add(menuButton);
Controls.Add(label1);
Controls.Add(dataGridView1);
FormBorderStyle = FormBorderStyle.None;
Name = "EVENT_DETAILS";
Text = "EVENT_DETAILS";
((System.ComponentModel.ISupportInitialize)menuButton).EndInit();
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private PictureBox menuButton;
private DataGridView dataGridView1;
private Button button1;
}
}