-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarks_Teacher.Designer.cs
159 lines (153 loc) · 7.05 KB
/
Marks_Teacher.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
namespace EducationManagementSystem
{
partial class Marks_Teacher
{
/// <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 Component 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()
{
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.S_id = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.S_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Mid1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Mid2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Final = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.SuspendLayout();
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] {
"Id",
"Name"});
this.comboBox1.Location = new System.Drawing.Point(5, 17);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(114, 21);
this.comboBox1.TabIndex = 0;
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(128, 18);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(237, 20);
this.textBox1.TabIndex = 1;
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.S_id,
this.S_name,
this.Mid1,
this.Mid2,
this.Final});
this.dataGridView1.Location = new System.Drawing.Point(10, 72);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.Size = new System.Drawing.Size(631, 284);
this.dataGridView1.TabIndex = 3;
this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
//
// S_id
//
this.S_id.HeaderText = "S_id";
this.S_id.Name = "S_id";
//
// S_name
//
this.S_name.HeaderText = "S_name";
this.S_name.Name = "S_name";
//
// Mid1
//
this.Mid1.HeaderText = "Mid1";
this.Mid1.Name = "Mid1";
//
// Mid2
//
this.Mid2.HeaderText = "Mid2";
this.Mid2.Name = "Mid2";
//
// Final
//
this.Final.HeaderText = "Final";
this.Final.Name = "Final";
//
// pictureBox1
//
this.pictureBox1.Image = global::EducationManagementSystem.Properties.Resources.search_50px;
this.pictureBox1.Location = new System.Drawing.Point(375, 19);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(29, 18);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// pictureBox2
//
this.pictureBox2.Image = global::EducationManagementSystem.Properties.Resources.Register_Button;
this.pictureBox2.Location = new System.Drawing.Point(493, 11);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(148, 55);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox2.TabIndex = 4;
this.pictureBox2.TabStop = false;
this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
//
// Marks_Teacher
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.comboBox1);
this.Name = "Marks_Teacher";
this.Size = new System.Drawing.Size(690, 501);
this.Load += new System.EventHandler(this.Marks_Teacher_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.DataGridViewTextBoxColumn S_id;
private System.Windows.Forms.DataGridViewTextBoxColumn S_name;
private System.Windows.Forms.DataGridViewTextBoxColumn Mid1;
private System.Windows.Forms.DataGridViewTextBoxColumn Mid2;
private System.Windows.Forms.DataGridViewTextBoxColumn Final;
private System.Windows.Forms.PictureBox pictureBox2;
}
}