1 | namespace DistributedGA.Test
|
---|
2 | {
|
---|
3 | partial class Form1
|
---|
4 | {
|
---|
5 | /// <summary>
|
---|
6 | /// Required designer variable.
|
---|
7 | /// </summary>
|
---|
8 | private System.ComponentModel.IContainer components = null;
|
---|
9 |
|
---|
10 | /// <summary>
|
---|
11 | /// Clean up any resources being used.
|
---|
12 | /// </summary>
|
---|
13 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
14 | protected override void Dispose(bool disposing)
|
---|
15 | {
|
---|
16 | if (disposing && (components != null))
|
---|
17 | {
|
---|
18 | components.Dispose();
|
---|
19 | }
|
---|
20 | base.Dispose(disposing);
|
---|
21 | }
|
---|
22 |
|
---|
23 | #region Windows Form Designer generated code
|
---|
24 |
|
---|
25 | /// <summary>
|
---|
26 | /// Required method for Designer support - do not modify
|
---|
27 | /// the contents of this method with the code editor.
|
---|
28 | /// </summary>
|
---|
29 | private void InitializeComponent()
|
---|
30 | {
|
---|
31 | this.button1 = new System.Windows.Forms.Button();
|
---|
32 | this.button2 = new System.Windows.Forms.Button();
|
---|
33 | this.label1 = new System.Windows.Forms.Label();
|
---|
34 | this.label2 = new System.Windows.Forms.Label();
|
---|
35 | this.button3 = new System.Windows.Forms.Button();
|
---|
36 | this.label3 = new System.Windows.Forms.Label();
|
---|
37 | this.button4 = new System.Windows.Forms.Button();
|
---|
38 | this.button5 = new System.Windows.Forms.Button();
|
---|
39 | this.SuspendLayout();
|
---|
40 | //
|
---|
41 | // button1
|
---|
42 | //
|
---|
43 | this.button1.Location = new System.Drawing.Point(16, 29);
|
---|
44 | this.button1.Name = "button1";
|
---|
45 | this.button1.Size = new System.Drawing.Size(75, 23);
|
---|
46 | this.button1.TabIndex = 0;
|
---|
47 | this.button1.Text = "start host";
|
---|
48 | this.button1.UseVisualStyleBackColor = true;
|
---|
49 | this.button1.Click += new System.EventHandler(this.button1_Click);
|
---|
50 | //
|
---|
51 | // button2
|
---|
52 | //
|
---|
53 | this.button2.Location = new System.Drawing.Point(16, 58);
|
---|
54 | this.button2.Name = "button2";
|
---|
55 | this.button2.Size = new System.Drawing.Size(75, 23);
|
---|
56 | this.button2.TabIndex = 1;
|
---|
57 | this.button2.Text = "client";
|
---|
58 | this.button2.UseVisualStyleBackColor = true;
|
---|
59 | this.button2.Click += new System.EventHandler(this.button2_Click);
|
---|
60 | //
|
---|
61 | // label1
|
---|
62 | //
|
---|
63 | this.label1.AutoSize = true;
|
---|
64 | this.label1.Location = new System.Drawing.Point(13, 13);
|
---|
65 | this.label1.Name = "label1";
|
---|
66 | this.label1.Size = new System.Drawing.Size(172, 13);
|
---|
67 | this.label1.TabIndex = 2;
|
---|
68 | this.label1.Text = "MessageSender & MessageService:";
|
---|
69 | //
|
---|
70 | // label2
|
---|
71 | //
|
---|
72 | this.label2.AutoSize = true;
|
---|
73 | this.label2.Location = new System.Drawing.Point(13, 126);
|
---|
74 | this.label2.Name = "label2";
|
---|
75 | this.label2.Size = new System.Drawing.Size(90, 13);
|
---|
76 | this.label2.TabIndex = 3;
|
---|
77 | this.label2.Text = "MessageHandler:";
|
---|
78 | //
|
---|
79 | // button3
|
---|
80 | //
|
---|
81 | this.button3.Location = new System.Drawing.Point(16, 142);
|
---|
82 | this.button3.Name = "button3";
|
---|
83 | this.button3.Size = new System.Drawing.Size(75, 23);
|
---|
84 | this.button3.TabIndex = 4;
|
---|
85 | this.button3.Text = "start handler";
|
---|
86 | this.button3.UseVisualStyleBackColor = true;
|
---|
87 | this.button3.Click += new System.EventHandler(this.button3_Click);
|
---|
88 | //
|
---|
89 | // label3
|
---|
90 | //
|
---|
91 | this.label3.AutoSize = true;
|
---|
92 | this.label3.Location = new System.Drawing.Point(13, 84);
|
---|
93 | this.label3.Name = "label3";
|
---|
94 | this.label3.Size = new System.Drawing.Size(81, 13);
|
---|
95 | this.label3.TabIndex = 5;
|
---|
96 | this.label3.Text = "Contact Server:";
|
---|
97 | //
|
---|
98 | // button4
|
---|
99 | //
|
---|
100 | this.button4.Location = new System.Drawing.Point(12, 100);
|
---|
101 | this.button4.Name = "button4";
|
---|
102 | this.button4.Size = new System.Drawing.Size(125, 23);
|
---|
103 | this.button4.TabIndex = 6;
|
---|
104 | this.button4.Text = "test ContactServer";
|
---|
105 | this.button4.UseVisualStyleBackColor = true;
|
---|
106 | this.button4.Click += new System.EventHandler(this.button4_Click);
|
---|
107 | //
|
---|
108 | // button5
|
---|
109 | //
|
---|
110 | this.button5.Location = new System.Drawing.Point(19, 210);
|
---|
111 | this.button5.Name = "button5";
|
---|
112 | this.button5.Size = new System.Drawing.Size(75, 23);
|
---|
113 | this.button5.TabIndex = 7;
|
---|
114 | this.button5.Text = "Test";
|
---|
115 | this.button5.UseVisualStyleBackColor = true;
|
---|
116 | this.button5.Click += new System.EventHandler(this.button5_Click);
|
---|
117 | //
|
---|
118 | // Form1
|
---|
119 | //
|
---|
120 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
121 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
122 | this.ClientSize = new System.Drawing.Size(284, 261);
|
---|
123 | this.Controls.Add(this.button5);
|
---|
124 | this.Controls.Add(this.button4);
|
---|
125 | this.Controls.Add(this.label3);
|
---|
126 | this.Controls.Add(this.button3);
|
---|
127 | this.Controls.Add(this.label2);
|
---|
128 | this.Controls.Add(this.label1);
|
---|
129 | this.Controls.Add(this.button2);
|
---|
130 | this.Controls.Add(this.button1);
|
---|
131 | this.Name = "Form1";
|
---|
132 | this.Text = "Form1";
|
---|
133 | this.ResumeLayout(false);
|
---|
134 | this.PerformLayout();
|
---|
135 |
|
---|
136 | }
|
---|
137 |
|
---|
138 | #endregion
|
---|
139 |
|
---|
140 | private System.Windows.Forms.Button button1;
|
---|
141 | private System.Windows.Forms.Button button2;
|
---|
142 | private System.Windows.Forms.Label label1;
|
---|
143 | private System.Windows.Forms.Label label2;
|
---|
144 | private System.Windows.Forms.Button button3;
|
---|
145 | private System.Windows.Forms.Label label3;
|
---|
146 | private System.Windows.Forms.Button button4;
|
---|
147 | private System.Windows.Forms.Button button5;
|
---|
148 | }
|
---|
149 | }
|
---|
150 |
|
---|