-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
96 lines (89 loc) · 3.45 KB
/
Form1.Designer.cs
File metadata and controls
96 lines (89 loc) · 3.45 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
namespace Server
{
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()
{
this.ListenButton = new System.Windows.Forms.Button();
this.PortInput = new System.Windows.Forms.TextBox();
this.Names = new System.Windows.Forms.ListBox();
this.Ages = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// ListenButton
//
this.ListenButton.Location = new System.Drawing.Point(194, 33);
this.ListenButton.Name = "ListenButton";
this.ListenButton.Size = new System.Drawing.Size(74, 36);
this.ListenButton.TabIndex = 0;
this.ListenButton.Text = "Listen";
this.ListenButton.UseVisualStyleBackColor = true;
this.ListenButton.Click += new System.EventHandler(this.ListenButton_Click);
//
// PortInput
//
this.PortInput.Location = new System.Drawing.Point(12, 40);
this.PortInput.Name = "PortInput";
this.PortInput.Size = new System.Drawing.Size(171, 22);
this.PortInput.TabIndex = 1;
//
// Names
//
this.Names.FormattingEnabled = true;
this.Names.ItemHeight = 16;
this.Names.Location = new System.Drawing.Point(12, 100);
this.Names.Name = "Names";
this.Names.Size = new System.Drawing.Size(113, 180);
this.Names.TabIndex = 2;
//
// Ages
//
this.Ages.FormattingEnabled = true;
this.Ages.ItemHeight = 16;
this.Ages.Location = new System.Drawing.Point(148, 100);
this.Ages.Name = "Ages";
this.Ages.Size = new System.Drawing.Size(120, 180);
this.Ages.TabIndex = 3;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(280, 355);
this.Controls.Add(this.Ages);
this.Controls.Add(this.Names);
this.Controls.Add(this.PortInput);
this.Controls.Add(this.ListenButton);
this.Name = "Form1";
this.Text = "Server";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button ListenButton;
private System.Windows.Forms.TextBox PortInput;
private System.Windows.Forms.ListBox Names;
private System.Windows.Forms.ListBox Ages;
}
}