-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
633 lines (626 loc) · 33.4 KB
/
Form1.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
namespace ProgrammingDesign
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.保存SToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
this.退出EscToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.录入ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.修改ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
this.查询SToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.统计ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
this.删除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.StudentData = new System.Windows.Forms.DataGridView();
this.StudentNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.StudentName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Gender = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Age = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ClassNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Speciality = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Department = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.MainMenu = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
this.保存SToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
this.退出EscToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.学生信息IToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.录入ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.修改ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripSeparator();
this.查询ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.按学号ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.按姓名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.按性别ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.按班号ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.退出查询ToolStripMenuItem = new System.Windows.Forms.ToolStripSeparator();
this.退出查询模式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.统计ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.按性别ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.按班号ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.按年龄ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.按系别ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripSeparator();
this.删除ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.SNumLabel = new System.Windows.Forms.Label();
this.NameLabel = new System.Windows.Forms.Label();
this.GenderLabel = new System.Windows.Forms.Label();
this.AgeLabel = new System.Windows.Forms.Label();
this.CNumLabel = new System.Windows.Forms.Label();
this.SpecialityLabel = new System.Windows.Forms.Label();
this.DepartmentLabel = new System.Windows.Forms.Label();
this.SNumTextbox = new System.Windows.Forms.TextBox();
this.NameTextbox = new System.Windows.Forms.TextBox();
this.GenderTextbox = new System.Windows.Forms.TextBox();
this.CNumTextbox = new System.Windows.Forms.TextBox();
this.AgeTextbox = new System.Windows.Forms.TextBox();
this.SpecialityTextbox = new System.Windows.Forms.TextBox();
this.DepartmentTextbox = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.StudentData)).BeginInit();
this.MainMenu.SuspendLayout();
this.SuspendLayout();
//
// 保存SToolStripMenuItem
//
this.保存SToolStripMenuItem.Name = "保存SToolStripMenuItem";
this.保存SToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.保存SToolStripMenuItem.Size = new System.Drawing.Size(213, 26);
this.保存SToolStripMenuItem.Text = "保存(S)";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(210, 6);
//
// 退出EscToolStripMenuItem
//
this.退出EscToolStripMenuItem.Name = "退出EscToolStripMenuItem";
this.退出EscToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.退出EscToolStripMenuItem.Size = new System.Drawing.Size(213, 26);
this.退出EscToolStripMenuItem.Text = "退出(Esc)";
//
// 录入ToolStripMenuItem
//
this.录入ToolStripMenuItem.Name = "录入ToolStripMenuItem";
this.录入ToolStripMenuItem.Size = new System.Drawing.Size(143, 26);
this.录入ToolStripMenuItem.Text = "录入(E)";
//
// 修改ToolStripMenuItem
//
this.修改ToolStripMenuItem.Name = "修改ToolStripMenuItem";
this.修改ToolStripMenuItem.Size = new System.Drawing.Size(143, 26);
this.修改ToolStripMenuItem.Text = "修改(R)";
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(140, 6);
//
// 查询SToolStripMenuItem
//
this.查询SToolStripMenuItem.Name = "查询SToolStripMenuItem";
this.查询SToolStripMenuItem.Size = new System.Drawing.Size(143, 26);
this.查询SToolStripMenuItem.Text = "查询(S)";
//
// 统计ToolStripMenuItem
//
this.统计ToolStripMenuItem.Name = "统计ToolStripMenuItem";
this.统计ToolStripMenuItem.Size = new System.Drawing.Size(143, 26);
this.统计ToolStripMenuItem.Text = "统计(C)";
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(140, 6);
//
// 删除ToolStripMenuItem
//
this.删除ToolStripMenuItem.Name = "删除ToolStripMenuItem";
this.删除ToolStripMenuItem.Size = new System.Drawing.Size(143, 26);
this.删除ToolStripMenuItem.Text = "删除(D)";
//
// StudentData
//
this.StudentData.AllowUserToAddRows = false;
this.StudentData.AllowUserToDeleteRows = false;
this.StudentData.AllowUserToResizeColumns = false;
this.StudentData.AllowUserToResizeRows = false;
this.StudentData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.StudentData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.StudentNum,
this.StudentName,
this.Gender,
this.Age,
this.ClassNum,
this.Speciality,
this.Department});
this.StudentData.Location = new System.Drawing.Point(39, 211);
this.StudentData.MultiSelect = false;
this.StudentData.Name = "StudentData";
this.StudentData.ReadOnly = true;
this.StudentData.RowHeadersVisible = false;
this.StudentData.RowHeadersWidth = 4;
this.StudentData.RowTemplate.Height = 27;
this.StudentData.Size = new System.Drawing.Size(704, 200);
this.StudentData.TabIndex = 1;
this.StudentData.TabStop = false;
//
// StudentNum
//
this.StudentNum.HeaderText = "学号";
this.StudentNum.MinimumWidth = 6;
this.StudentNum.Name = "StudentNum";
this.StudentNum.ReadOnly = true;
this.StudentNum.Width = 75;
//
// StudentName
//
this.StudentName.HeaderText = "姓名";
this.StudentName.MinimumWidth = 6;
this.StudentName.Name = "StudentName";
this.StudentName.ReadOnly = true;
this.StudentName.Width = 75;
//
// Gender
//
this.Gender.HeaderText = "性别";
this.Gender.MinimumWidth = 6;
this.Gender.Name = "Gender";
this.Gender.ReadOnly = true;
this.Gender.Width = 75;
//
// Age
//
this.Age.HeaderText = "年龄";
this.Age.MinimumWidth = 6;
this.Age.Name = "Age";
this.Age.ReadOnly = true;
this.Age.Width = 75;
//
// ClassNum
//
this.ClassNum.HeaderText = "班号";
this.ClassNum.MinimumWidth = 6;
this.ClassNum.Name = "ClassNum";
this.ClassNum.ReadOnly = true;
this.ClassNum.Width = 75;
//
// Speciality
//
this.Speciality.HeaderText = "专业";
this.Speciality.MinimumWidth = 6;
this.Speciality.Name = "Speciality";
this.Speciality.ReadOnly = true;
this.Speciality.Width = 75;
//
// Department
//
this.Department.HeaderText = "系别";
this.Department.MinimumWidth = 6;
this.Department.Name = "Department";
this.Department.ReadOnly = true;
this.Department.Width = 75;
//
// MainMenu
//
this.MainMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem4,
this.学生信息IToolStripMenuItem});
this.MainMenu.Location = new System.Drawing.Point(0, 0);
this.MainMenu.Name = "MainMenu";
this.MainMenu.Size = new System.Drawing.Size(782, 28);
this.MainMenu.TabIndex = 2;
this.MainMenu.Text = "MainMenu";
//
// toolStripMenuItem4
//
this.toolStripMenuItem4.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.保存SToolStripMenuItem1,
this.toolStripMenuItem5,
this.退出EscToolStripMenuItem1});
this.toolStripMenuItem4.Name = "toolStripMenuItem4";
this.toolStripMenuItem4.Size = new System.Drawing.Size(71, 24);
this.toolStripMenuItem4.Text = "文件(F)";
//
// 保存SToolStripMenuItem1
//
this.保存SToolStripMenuItem1.Name = "保存SToolStripMenuItem1";
this.保存SToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.保存SToolStripMenuItem1.Size = new System.Drawing.Size(240, 26);
this.保存SToolStripMenuItem1.Text = "保存(S)";
this.保存SToolStripMenuItem1.Click += new System.EventHandler(this.保存SToolStripMenuItem1_Click);
//
// toolStripMenuItem5
//
this.toolStripMenuItem5.Name = "toolStripMenuItem5";
this.toolStripMenuItem5.Size = new System.Drawing.Size(237, 6);
//
// 退出EscToolStripMenuItem1
//
this.退出EscToolStripMenuItem1.Name = "退出EscToolStripMenuItem1";
this.退出EscToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.退出EscToolStripMenuItem1.Size = new System.Drawing.Size(240, 26);
this.退出EscToolStripMenuItem1.Text = "退出(Esc)";
this.退出EscToolStripMenuItem1.Click += new System.EventHandler(this.退出EscToolStripMenuItem1_Click);
//
// 学生信息IToolStripMenuItem
//
this.学生信息IToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.录入ToolStripMenuItem1,
this.修改ToolStripMenuItem1,
this.toolStripMenuItem6,
this.查询ToolStripMenuItem,
this.统计ToolStripMenuItem1,
this.toolStripMenuItem7,
this.删除ToolStripMenuItem1});
this.学生信息IToolStripMenuItem.Name = "学生信息IToolStripMenuItem";
this.学生信息IToolStripMenuItem.Size = new System.Drawing.Size(97, 24);
this.学生信息IToolStripMenuItem.Text = "学生信息(I)";
//
// 录入ToolStripMenuItem1
//
this.录入ToolStripMenuItem1.Name = "录入ToolStripMenuItem1";
this.录入ToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.录入ToolStripMenuItem1.Size = new System.Drawing.Size(244, 26);
this.录入ToolStripMenuItem1.Text = "录入(E)";
this.录入ToolStripMenuItem1.Click += new System.EventHandler(this.录入ToolStripMenuItem1_Click);
//
// 修改ToolStripMenuItem1
//
this.修改ToolStripMenuItem1.Name = "修改ToolStripMenuItem1";
this.修改ToolStripMenuItem1.Size = new System.Drawing.Size(244, 26);
this.修改ToolStripMenuItem1.Text = "修改(R)";
this.修改ToolStripMenuItem1.Click += new System.EventHandler(this.修改ToolStripMenuItem1_Click);
//
// toolStripMenuItem6
//
this.toolStripMenuItem6.Name = "toolStripMenuItem6";
this.toolStripMenuItem6.Size = new System.Drawing.Size(241, 6);
//
// 查询ToolStripMenuItem
//
this.查询ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.按学号ToolStripMenuItem,
this.按姓名ToolStripMenuItem,
this.按性别ToolStripMenuItem,
this.按班号ToolStripMenuItem,
this.退出查询ToolStripMenuItem,
this.退出查询模式ToolStripMenuItem});
this.查询ToolStripMenuItem.Name = "查询ToolStripMenuItem";
this.查询ToolStripMenuItem.Size = new System.Drawing.Size(244, 26);
this.查询ToolStripMenuItem.Text = "查询(Q)";
//
// 按学号ToolStripMenuItem
//
this.按学号ToolStripMenuItem.Name = "按学号ToolStripMenuItem";
this.按学号ToolStripMenuItem.Size = new System.Drawing.Size(152, 26);
this.按学号ToolStripMenuItem.Text = "按学号";
this.按学号ToolStripMenuItem.Click += new System.EventHandler(this.按学号ToolStripMenuItem_Click);
//
// 按姓名ToolStripMenuItem
//
this.按姓名ToolStripMenuItem.Name = "按姓名ToolStripMenuItem";
this.按姓名ToolStripMenuItem.Size = new System.Drawing.Size(152, 26);
this.按姓名ToolStripMenuItem.Text = "按姓名";
this.按姓名ToolStripMenuItem.Click += new System.EventHandler(this.按姓名ToolStripMenuItem_Click);
//
// 按性别ToolStripMenuItem
//
this.按性别ToolStripMenuItem.Name = "按性别ToolStripMenuItem";
this.按性别ToolStripMenuItem.Size = new System.Drawing.Size(152, 26);
this.按性别ToolStripMenuItem.Text = "按性别";
this.按性别ToolStripMenuItem.Click += new System.EventHandler(this.按性别ToolStripMenuItem_Click);
//
// 按班号ToolStripMenuItem
//
this.按班号ToolStripMenuItem.Name = "按班号ToolStripMenuItem";
this.按班号ToolStripMenuItem.Size = new System.Drawing.Size(152, 26);
this.按班号ToolStripMenuItem.Text = "按班号";
this.按班号ToolStripMenuItem.Click += new System.EventHandler(this.按班号ToolStripMenuItem_Click);
//
// 退出查询ToolStripMenuItem
//
this.退出查询ToolStripMenuItem.Name = "退出查询ToolStripMenuItem";
this.退出查询ToolStripMenuItem.Size = new System.Drawing.Size(149, 6);
//
// 退出查询模式ToolStripMenuItem
//
this.退出查询模式ToolStripMenuItem.Name = "退出查询模式ToolStripMenuItem";
this.退出查询模式ToolStripMenuItem.Size = new System.Drawing.Size(152, 26);
this.退出查询模式ToolStripMenuItem.Text = "退出查询";
this.退出查询模式ToolStripMenuItem.Click += new System.EventHandler(this.退出查询模式ToolStripMenuItem_Click);
//
// 统计ToolStripMenuItem1
//
this.统计ToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.按性别ToolStripMenuItem1,
this.按班号ToolStripMenuItem1,
this.按年龄ToolStripMenuItem,
this.按系别ToolStripMenuItem});
this.统计ToolStripMenuItem1.Name = "统计ToolStripMenuItem1";
this.统计ToolStripMenuItem1.Size = new System.Drawing.Size(244, 26);
this.统计ToolStripMenuItem1.Text = "统计(C)";
//
// 按性别ToolStripMenuItem1
//
this.按性别ToolStripMenuItem1.Name = "按性别ToolStripMenuItem1";
this.按性别ToolStripMenuItem1.Size = new System.Drawing.Size(224, 26);
this.按性别ToolStripMenuItem1.Text = "按性别";
this.按性别ToolStripMenuItem1.Click += new System.EventHandler(this.按性别ToolStripMenuItem1_Click);
//
// 按班号ToolStripMenuItem1
//
this.按班号ToolStripMenuItem1.Name = "按班号ToolStripMenuItem1";
this.按班号ToolStripMenuItem1.Size = new System.Drawing.Size(224, 26);
this.按班号ToolStripMenuItem1.Text = "按班号";
this.按班号ToolStripMenuItem1.Click += new System.EventHandler(this.按班号ToolStripMenuItem1_Click);
//
// 按年龄ToolStripMenuItem
//
this.按年龄ToolStripMenuItem.Name = "按年龄ToolStripMenuItem";
this.按年龄ToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
this.按年龄ToolStripMenuItem.Text = "按年龄";
this.按年龄ToolStripMenuItem.Click += new System.EventHandler(this.按年龄ToolStripMenuItem_Click);
//
// 按系别ToolStripMenuItem
//
this.按系别ToolStripMenuItem.Name = "按系别ToolStripMenuItem";
this.按系别ToolStripMenuItem.Size = new System.Drawing.Size(224, 26);
this.按系别ToolStripMenuItem.Text = "按系别";
this.按系别ToolStripMenuItem.Click += new System.EventHandler(this.按系别ToolStripMenuItem_Click);
//
// toolStripMenuItem7
//
this.toolStripMenuItem7.Name = "toolStripMenuItem7";
this.toolStripMenuItem7.Size = new System.Drawing.Size(241, 6);
//
// 删除ToolStripMenuItem1
//
this.删除ToolStripMenuItem1.Name = "删除ToolStripMenuItem1";
this.删除ToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.Delete)));
this.删除ToolStripMenuItem1.Size = new System.Drawing.Size(244, 26);
this.删除ToolStripMenuItem1.Text = "删除(D)";
this.删除ToolStripMenuItem1.Click += new System.EventHandler(this.删除ToolStripMenuItem1_Click);
//
// SNumLabel
//
this.SNumLabel.AutoSize = true;
this.SNumLabel.Location = new System.Drawing.Point(36, 53);
this.SNumLabel.Name = "SNumLabel";
this.SNumLabel.Size = new System.Drawing.Size(45, 15);
this.SNumLabel.TabIndex = 3;
this.SNumLabel.Text = "学号:";
//
// NameLabel
//
this.NameLabel.AutoSize = true;
this.NameLabel.Location = new System.Drawing.Point(36, 84);
this.NameLabel.Name = "NameLabel";
this.NameLabel.Size = new System.Drawing.Size(45, 15);
this.NameLabel.TabIndex = 4;
this.NameLabel.Text = "姓名:";
//
// GenderLabel
//
this.GenderLabel.AutoSize = true;
this.GenderLabel.Location = new System.Drawing.Point(36, 115);
this.GenderLabel.Name = "GenderLabel";
this.GenderLabel.Size = new System.Drawing.Size(45, 15);
this.GenderLabel.TabIndex = 5;
this.GenderLabel.Text = "性别:";
//
// AgeLabel
//
this.AgeLabel.AutoSize = true;
this.AgeLabel.Location = new System.Drawing.Point(36, 146);
this.AgeLabel.Name = "AgeLabel";
this.AgeLabel.Size = new System.Drawing.Size(45, 15);
this.AgeLabel.TabIndex = 6;
this.AgeLabel.Text = "年龄:";
//
// CNumLabel
//
this.CNumLabel.AutoSize = true;
this.CNumLabel.Location = new System.Drawing.Point(271, 115);
this.CNumLabel.Name = "CNumLabel";
this.CNumLabel.Size = new System.Drawing.Size(45, 15);
this.CNumLabel.TabIndex = 7;
this.CNumLabel.Text = "班号:";
//
// SpecialityLabel
//
this.SpecialityLabel.AutoSize = true;
this.SpecialityLabel.Location = new System.Drawing.Point(271, 84);
this.SpecialityLabel.Name = "SpecialityLabel";
this.SpecialityLabel.Size = new System.Drawing.Size(45, 15);
this.SpecialityLabel.TabIndex = 8;
this.SpecialityLabel.Text = "专业:";
//
// DepartmentLabel
//
this.DepartmentLabel.AutoSize = true;
this.DepartmentLabel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.DepartmentLabel.Location = new System.Drawing.Point(271, 53);
this.DepartmentLabel.Name = "DepartmentLabel";
this.DepartmentLabel.Size = new System.Drawing.Size(45, 15);
this.DepartmentLabel.TabIndex = 9;
this.DepartmentLabel.Text = "系别:";
//
// SNumTextbox
//
this.SNumTextbox.Location = new System.Drawing.Point(87, 50);
this.SNumTextbox.MaxLength = 10;
this.SNumTextbox.Name = "SNumTextbox";
this.SNumTextbox.Size = new System.Drawing.Size(157, 25);
this.SNumTextbox.TabIndex = 10;
this.SNumTextbox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SNumTextbox_KeyPress);
//
// NameTextbox
//
this.NameTextbox.Location = new System.Drawing.Point(87, 81);
this.NameTextbox.Name = "NameTextbox";
this.NameTextbox.Size = new System.Drawing.Size(157, 25);
this.NameTextbox.TabIndex = 11;
this.NameTextbox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NameTextbox_KeyPress);
//
// GenderTextbox
//
this.GenderTextbox.Location = new System.Drawing.Point(87, 112);
this.GenderTextbox.MaxLength = 1;
this.GenderTextbox.Name = "GenderTextbox";
this.GenderTextbox.Size = new System.Drawing.Size(157, 25);
this.GenderTextbox.TabIndex = 12;
this.GenderTextbox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.GenderTextbox_KeyPress);
//
// CNumTextbox
//
this.CNumTextbox.Location = new System.Drawing.Point(322, 112);
this.CNumTextbox.MaxLength = 4;
this.CNumTextbox.Name = "CNumTextbox";
this.CNumTextbox.Size = new System.Drawing.Size(157, 25);
this.CNumTextbox.TabIndex = 16;
this.CNumTextbox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.CNumTextbox_KeyPress);
//
// AgeTextbox
//
this.AgeTextbox.Location = new System.Drawing.Point(87, 143);
this.AgeTextbox.MaxLength = 3;
this.AgeTextbox.Name = "AgeTextbox";
this.AgeTextbox.Size = new System.Drawing.Size(157, 25);
this.AgeTextbox.TabIndex = 13;
this.AgeTextbox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.AgeTextbox_KeyPress);
//
// SpecialityTextbox
//
this.SpecialityTextbox.Location = new System.Drawing.Point(322, 81);
this.SpecialityTextbox.Name = "SpecialityTextbox";
this.SpecialityTextbox.Size = new System.Drawing.Size(157, 25);
this.SpecialityTextbox.TabIndex = 15;
this.SpecialityTextbox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SpecialityTextbox_KeyPress);
//
// DepartmentTextbox
//
this.DepartmentTextbox.Location = new System.Drawing.Point(322, 50);
this.DepartmentTextbox.Name = "DepartmentTextbox";
this.DepartmentTextbox.Size = new System.Drawing.Size(157, 25);
this.DepartmentTextbox.TabIndex = 14;
this.DepartmentTextbox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.DepartmentTextbox_KeyPress);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(782, 453);
this.Controls.Add(this.DepartmentTextbox);
this.Controls.Add(this.SpecialityTextbox);
this.Controls.Add(this.AgeTextbox);
this.Controls.Add(this.CNumTextbox);
this.Controls.Add(this.GenderTextbox);
this.Controls.Add(this.NameTextbox);
this.Controls.Add(this.SNumTextbox);
this.Controls.Add(this.DepartmentLabel);
this.Controls.Add(this.SpecialityLabel);
this.Controls.Add(this.CNumLabel);
this.Controls.Add(this.AgeLabel);
this.Controls.Add(this.GenderLabel);
this.Controls.Add(this.NameLabel);
this.Controls.Add(this.SNumLabel);
this.Controls.Add(this.StudentData);
this.Controls.Add(this.MainMenu);
this.MainMenuStrip = this.MainMenu;
this.MaximizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "学生学籍管理系统";
((System.ComponentModel.ISupportInitialize)(this.StudentData)).EndInit();
this.MainMenu.ResumeLayout(false);
this.MainMenu.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStripMenuItem 文件FToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 保存SToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 退出EscToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 学生信息ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 录入ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 修改ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
private System.Windows.Forms.ToolStripMenuItem 查询SToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 统计ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem 删除ToolStripMenuItem;
private System.Windows.Forms.DataGridView StudentData;
private System.Windows.Forms.MenuStrip MainMenu;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem4;
private System.Windows.Forms.ToolStripMenuItem 保存SToolStripMenuItem1;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem5;
private System.Windows.Forms.ToolStripMenuItem 退出EscToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 学生信息IToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 录入ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 修改ToolStripMenuItem1;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem6;
private System.Windows.Forms.ToolStripMenuItem 查询ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 统计ToolStripMenuItem1;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem7;
private System.Windows.Forms.ToolStripMenuItem 删除ToolStripMenuItem1;
private System.Windows.Forms.DataGridViewTextBoxColumn StudentNum;
private System.Windows.Forms.DataGridViewTextBoxColumn StudentName;
private System.Windows.Forms.DataGridViewTextBoxColumn Gender;
private System.Windows.Forms.DataGridViewTextBoxColumn Age;
private System.Windows.Forms.DataGridViewTextBoxColumn ClassNum;
private System.Windows.Forms.DataGridViewTextBoxColumn Speciality;
private System.Windows.Forms.DataGridViewTextBoxColumn Department;
private System.Windows.Forms.Label SNumLabel;
private System.Windows.Forms.Label NameLabel;
private System.Windows.Forms.Label GenderLabel;
private System.Windows.Forms.Label AgeLabel;
private System.Windows.Forms.Label CNumLabel;
private System.Windows.Forms.Label SpecialityLabel;
private System.Windows.Forms.Label DepartmentLabel;
private System.Windows.Forms.TextBox SNumTextbox;
private System.Windows.Forms.TextBox NameTextbox;
private System.Windows.Forms.TextBox GenderTextbox;
private System.Windows.Forms.TextBox CNumTextbox;
private System.Windows.Forms.TextBox AgeTextbox;
private System.Windows.Forms.TextBox SpecialityTextbox;
private System.Windows.Forms.TextBox DepartmentTextbox;
private System.Windows.Forms.ToolStripMenuItem 按学号ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 按姓名ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 按性别ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 按班号ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 按性别ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 按班号ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 按年龄ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 按系别ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator 退出查询ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 退出查询模式ToolStripMenuItem;
}
}