-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
101 lines (96 loc) · 3.47 KB
/
Form1.Designer.cs
File metadata and controls
101 lines (96 loc) · 3.47 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
namespace StudentApp
{
partial class Form1
{
/// <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()
{
studentGrid = new DataGridView();
btnAdd = new Button();
btnRefresh = new Button();
btnDelete = new Button();
((System.ComponentModel.ISupportInitialize)studentGrid).BeginInit();
SuspendLayout();
//
// studentGrid
//
studentGrid.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
studentGrid.Location = new Point(123, 63);
studentGrid.Name = "studentGrid";
studentGrid.Size = new Size(626, 241);
studentGrid.TabIndex = 0;
studentGrid.CellContentClick += studentGrid_CellContentClick;
//
// btnAdd
//
btnAdd.Location = new Point(178, 355);
btnAdd.Name = "btnAdd";
btnAdd.Size = new Size(86, 23);
btnAdd.TabIndex = 1;
btnAdd.Text = "Add";
btnAdd.UseVisualStyleBackColor = true;
btnAdd.Click += btnAdd_Click;
//
// btnRefresh
//
btnRefresh.Location = new Point(392, 355);
btnRefresh.Name = "btnRefresh";
btnRefresh.Size = new Size(86, 23);
btnRefresh.TabIndex = 2;
btnRefresh.Text = "Refresh";
btnRefresh.UseVisualStyleBackColor = true;
btnRefresh.Click += btnRefresh_Click;
//
// btnDelete
//
btnDelete.Location = new Point(594, 355);
btnDelete.Name = "btnDelete";
btnDelete.Size = new Size(86, 23);
btnDelete.TabIndex = 3;
btnDelete.Text = "Delete";
btnDelete.UseVisualStyleBackColor = true;
btnDelete.Click += button3_Click;
//
// Form1
//
AutoScaleDimensions = new SizeF(8F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(914, 450);
Controls.Add(btnDelete);
Controls.Add(btnRefresh);
Controls.Add(btnAdd);
Controls.Add(studentGrid);
Font = new Font("Showcard Gothic", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
Name = "Form1";
Text = "View Students";
Load += Form1_Load;
((System.ComponentModel.ISupportInitialize)studentGrid).EndInit();
ResumeLayout(false);
}
#endregion
private DataGridView studentGrid;
private Button btnAdd;
private Button btnRefresh;
private Button btnDelete;
}
}