-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDepartmentMaster.Designer.cs
127 lines (120 loc) · 5.75 KB
/
DepartmentMaster.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
namespace KITEPlacement
{
partial class DepartmentMaster
{
/// <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()
{
this.lblDeptCode = new System.Windows.Forms.Label();
this.txtDeptCode = new System.Windows.Forms.TextBox();
this.txtDeptName = new System.Windows.Forms.TextBox();
this.lblDeptName = new System.Windows.Forms.Label();
this.btnClear = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblDeptCode
//
this.lblDeptCode.AutoSize = true;
this.lblDeptCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblDeptCode.Location = new System.Drawing.Point(43, 43);
this.lblDeptCode.Name = "lblDeptCode";
this.lblDeptCode.Size = new System.Drawing.Size(104, 15);
this.lblDeptCode.TabIndex = 0;
this.lblDeptCode.Text = "Department Code";
//
// txtDeptCode
//
this.txtDeptCode.Location = new System.Drawing.Point(162, 41);
this.txtDeptCode.Name = "txtDeptCode";
this.txtDeptCode.Size = new System.Drawing.Size(162, 20);
this.txtDeptCode.TabIndex = 1;
//
// txtDeptName
//
this.txtDeptName.Location = new System.Drawing.Point(162, 73);
this.txtDeptName.Name = "txtDeptName";
this.txtDeptName.Size = new System.Drawing.Size(162, 20);
this.txtDeptName.TabIndex = 2;
//
// lblDeptName
//
this.lblDeptName.AutoSize = true;
this.lblDeptName.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblDeptName.Location = new System.Drawing.Point(43, 74);
this.lblDeptName.Name = "lblDeptName";
this.lblDeptName.Size = new System.Drawing.Size(109, 15);
this.lblDeptName.TabIndex = 2;
this.lblDeptName.Text = "Department Name";
//
// btnClear
//
this.btnClear.BackColor = System.Drawing.SystemColors.ControlDark;
this.btnClear.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnClear.Location = new System.Drawing.Point(246, 111);
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(78, 26);
this.btnClear.TabIndex = 4;
this.btnClear.Text = "Clear";
this.btnClear.UseVisualStyleBackColor = false;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
// btnSave
//
this.btnSave.BackColor = System.Drawing.SystemColors.ControlDark;
this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnSave.Location = new System.Drawing.Point(162, 111);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(78, 26);
this.btnSave.TabIndex = 3;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = false;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// DepartmentMaster
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(373, 169);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnClear);
this.Controls.Add(this.txtDeptName);
this.Controls.Add(this.lblDeptName);
this.Controls.Add(this.txtDeptCode);
this.Controls.Add(this.lblDeptCode);
this.Name = "DepartmentMaster";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "DEPARTMENT MASTER";
this.Load += new System.EventHandler(this.DepartmentMaster_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblDeptCode;
private System.Windows.Forms.TextBox txtDeptCode;
private System.Windows.Forms.TextBox txtDeptName;
private System.Windows.Forms.Label lblDeptName;
private System.Windows.Forms.Button btnClear;
private System.Windows.Forms.Button btnSave;
}
}