-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm3.Designer.cs
223 lines (217 loc) · 9.87 KB
/
Form3.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
namespace WindowsFormsApp1
{
partial class Form3
{
/// <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.txtSalary = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.Label();
this.txtId = new System.Windows.Forms.Label();
this.textBox3 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.btnbinarywrite = new System.Windows.Forms.Button();
this.btnsoapwrite = new System.Windows.Forms.Button();
this.btnbinaryread = new System.Windows.Forms.Button();
this.btnxmlread = new System.Windows.Forms.Button();
this.btnxmlwrite = new System.Windows.Forms.Button();
this.btnsoapread = new System.Windows.Forms.Button();
this.btnjsonread = new System.Windows.Forms.Button();
this.btnjsonwrite = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtSalary
//
this.txtSalary.AutoSize = true;
this.txtSalary.Location = new System.Drawing.Point(52, 100);
this.txtSalary.Name = "txtSalary";
this.txtSalary.Size = new System.Drawing.Size(113, 13);
this.txtSalary.TabIndex = 15;
this.txtSalary.Text = "Enter Employee Salary";
//
// txtName
//
this.txtName.AutoSize = true;
this.txtName.Location = new System.Drawing.Point(52, 74);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(112, 13);
this.txtName.TabIndex = 14;
this.txtName.Text = "Enter Employee Name";
//
// txtId
//
this.txtId.AutoSize = true;
this.txtId.Location = new System.Drawing.Point(52, 48);
this.txtId.Name = "txtId";
this.txtId.Size = new System.Drawing.Size(93, 13);
this.txtId.TabIndex = 13;
this.txtId.Text = "Enter Employee Id";
//
// textBox3
//
this.textBox3.Location = new System.Drawing.Point(181, 92);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(153, 20);
this.textBox3.TabIndex = 12;
this.textBox3.TextChanged += new System.EventHandler(this.textBox3_TextChanged);
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(181, 66);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(153, 20);
this.textBox2.TabIndex = 11;
this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(181, 40);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(153, 20);
this.textBox1.TabIndex = 10;
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// btnbinarywrite
//
this.btnbinarywrite.Location = new System.Drawing.Point(181, 140);
this.btnbinarywrite.Name = "btnbinarywrite";
this.btnbinarywrite.Size = new System.Drawing.Size(75, 23);
this.btnbinarywrite.TabIndex = 16;
this.btnbinarywrite.Text = "Binary Write";
this.btnbinarywrite.UseVisualStyleBackColor = true;
this.btnbinarywrite.Click += new System.EventHandler(this.btnbinarywrite_Click);
//
// btnsoapwrite
//
this.btnsoapwrite.Location = new System.Drawing.Point(181, 169);
this.btnsoapwrite.Name = "btnsoapwrite";
this.btnsoapwrite.Size = new System.Drawing.Size(75, 23);
this.btnsoapwrite.TabIndex = 17;
this.btnsoapwrite.Text = "Soap Write";
this.btnsoapwrite.UseVisualStyleBackColor = true;
this.btnsoapwrite.Click += new System.EventHandler(this.btnsoapwrite_Click);
//
// btnbinaryread
//
this.btnbinaryread.Location = new System.Drawing.Point(262, 140);
this.btnbinaryread.Name = "btnbinaryread";
this.btnbinaryread.Size = new System.Drawing.Size(75, 23);
this.btnbinaryread.TabIndex = 17;
this.btnbinaryread.Text = "Binary Read";
this.btnbinaryread.UseVisualStyleBackColor = true;
this.btnbinaryread.Click += new System.EventHandler(this.btnbinaryread_Click);
//
// btnxmlread
//
this.btnxmlread.Location = new System.Drawing.Point(262, 198);
this.btnxmlread.Name = "btnxmlread";
this.btnxmlread.Size = new System.Drawing.Size(75, 23);
this.btnxmlread.TabIndex = 18;
this.btnxmlread.Text = "XML Read";
this.btnxmlread.UseVisualStyleBackColor = true;
this.btnxmlread.Click += new System.EventHandler(this.btnxmlread_Click);
//
// btnxmlwrite
//
this.btnxmlwrite.Location = new System.Drawing.Point(181, 198);
this.btnxmlwrite.Name = "btnxmlwrite";
this.btnxmlwrite.Size = new System.Drawing.Size(75, 23);
this.btnxmlwrite.TabIndex = 17;
this.btnxmlwrite.Text = "XML Write";
this.btnxmlwrite.UseVisualStyleBackColor = true;
this.btnxmlwrite.Click += new System.EventHandler(this.btnxmlwrite_Click);
//
// btnsoapread
//
this.btnsoapread.Location = new System.Drawing.Point(259, 169);
this.btnsoapread.Name = "btnsoapread";
this.btnsoapread.Size = new System.Drawing.Size(75, 23);
this.btnsoapread.TabIndex = 19;
this.btnsoapread.Text = "Soap Read";
this.btnsoapread.UseVisualStyleBackColor = true;
this.btnsoapread.Click += new System.EventHandler(this.btnsoapread_Click);
//
// btnjsonread
//
this.btnjsonread.Location = new System.Drawing.Point(259, 227);
this.btnjsonread.Name = "btnjsonread";
this.btnjsonread.Size = new System.Drawing.Size(75, 23);
this.btnjsonread.TabIndex = 20;
this.btnjsonread.Text = "JSON Read";
this.btnjsonread.UseVisualStyleBackColor = true;
this.btnjsonread.Click += new System.EventHandler(this.btnjsonread_Click);
//
// btnjsonwrite
//
this.btnjsonwrite.Location = new System.Drawing.Point(181, 227);
this.btnjsonwrite.Name = "btnjsonwrite";
this.btnjsonwrite.Size = new System.Drawing.Size(75, 23);
this.btnjsonwrite.TabIndex = 20;
this.btnjsonwrite.Text = "JSON Write";
this.btnjsonwrite.UseVisualStyleBackColor = true;
this.btnjsonwrite.Click += new System.EventHandler(this.btnjsonwrite_Click);
//
// Form3
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.btnjsonwrite);
this.Controls.Add(this.btnjsonread);
this.Controls.Add(this.btnsoapread);
this.Controls.Add(this.btnxmlread);
this.Controls.Add(this.btnbinaryread);
this.Controls.Add(this.btnxmlwrite);
this.Controls.Add(this.btnsoapwrite);
this.Controls.Add(this.btnbinarywrite);
this.Controls.Add(this.txtSalary);
this.Controls.Add(this.txtName);
this.Controls.Add(this.txtId);
this.Controls.Add(this.textBox3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Name = "Form3";
this.Text = "Form3";
this.Load += new System.EventHandler(this.Form3_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label txtSalary;
private System.Windows.Forms.Label txtName;
private System.Windows.Forms.Label txtId;
private System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button btnbinarywrite;
private System.Windows.Forms.Button btnsoapwrite;
private System.Windows.Forms.Button btnbinaryread;
private System.Windows.Forms.Button btnxmlread;
private System.Windows.Forms.Button btnxmlwrite;
private System.Windows.Forms.Button btnsoapread;
private System.Windows.Forms.Button btnjsonread;
private System.Windows.Forms.Button btnjsonwrite;
}
}