-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathForm1.Designer.cs
172 lines (165 loc) · 8.28 KB
/
Form1.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
namespace CefUnityTestClient
{
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.components = new System.ComponentModel.Container();
this.btnCon = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.btnDis = new System.Windows.Forms.Button();
this.btnShut = new System.Windows.Forms.Button();
this.lblFrames = new System.Windows.Forms.Label();
this.lblPkIn = new System.Windows.Forms.Label();
this.lblPkOut = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.lblFps = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// btnCon
//
this.btnCon.Location = new System.Drawing.Point(12, 12);
this.btnCon.Name = "btnCon";
this.btnCon.Size = new System.Drawing.Size(126, 37);
this.btnCon.TabIndex = 0;
this.btnCon.Text = "Connect";
this.btnCon.UseVisualStyleBackColor = true;
this.btnCon.Click += new System.EventHandler(this.btnConnect_Click);
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.pictureBox1.Location = new System.Drawing.Point(12, 65);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(1024, 768);
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseUp);
//
// btnDis
//
this.btnDis.Location = new System.Drawing.Point(144, 12);
this.btnDis.Name = "btnDis";
this.btnDis.Size = new System.Drawing.Size(126, 37);
this.btnDis.TabIndex = 3;
this.btnDis.Text = "Disconnect";
this.btnDis.UseVisualStyleBackColor = true;
this.btnDis.Click += new System.EventHandler(this.btnDis_Click);
//
// btnShut
//
this.btnShut.Location = new System.Drawing.Point(276, 12);
this.btnShut.Name = "btnShut";
this.btnShut.Size = new System.Drawing.Size(126, 37);
this.btnShut.TabIndex = 4;
this.btnShut.Text = "Shut down server";
this.btnShut.UseVisualStyleBackColor = true;
this.btnShut.Click += new System.EventHandler(this.btnShut_Click);
//
// lblFrames
//
this.lblFrames.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lblFrames.ForeColor = System.Drawing.Color.DarkGreen;
this.lblFrames.Location = new System.Drawing.Point(934, 9);
this.lblFrames.Name = "lblFrames";
this.lblFrames.Size = new System.Drawing.Size(100, 16);
this.lblFrames.TabIndex = 5;
this.lblFrames.Text = "Frame counter";
this.lblFrames.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.toolTip1.SetToolTip(this.lblFrames, "Frame counter");
//
// lblPkIn
//
this.lblPkIn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lblPkIn.ForeColor = System.Drawing.Color.Blue;
this.lblPkIn.Location = new System.Drawing.Point(934, 25);
this.lblPkIn.Name = "lblPkIn";
this.lblPkIn.Size = new System.Drawing.Size(100, 16);
this.lblPkIn.TabIndex = 6;
this.lblPkIn.Text = "Packets in";
this.lblPkIn.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.toolTip1.SetToolTip(this.lblPkIn, "Packets in");
//
// lblPkOut
//
this.lblPkOut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lblPkOut.ForeColor = System.Drawing.Color.Fuchsia;
this.lblPkOut.Location = new System.Drawing.Point(934, 41);
this.lblPkOut.Name = "lblPkOut";
this.lblPkOut.Size = new System.Drawing.Size(100, 16);
this.lblPkOut.TabIndex = 7;
this.lblPkOut.Text = "Packets out";
this.lblPkOut.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.toolTip1.SetToolTip(this.lblPkOut, "Packets out");
//
// lblFps
//
this.lblFps.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lblFps.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.lblFps.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblFps.ForeColor = System.Drawing.Color.Yellow;
this.lblFps.Location = new System.Drawing.Point(792, 12);
this.lblFps.Name = "lblFps";
this.lblFps.Size = new System.Drawing.Size(110, 37);
this.lblFps.TabIndex = 8;
this.lblFps.Text = "FPS Counter";
this.lblFps.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1046, 842);
this.Controls.Add(this.lblFps);
this.Controls.Add(this.lblPkOut);
this.Controls.Add(this.lblPkIn);
this.Controls.Add(this.lblFrames);
this.Controls.Add(this.btnShut);
this.Controls.Add(this.btnDis);
this.Controls.Add(this.btnCon);
this.Controls.Add(this.pictureBox1);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "CEF Unity Server - Test Client";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnCon;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button btnDis;
private System.Windows.Forms.Button btnShut;
private System.Windows.Forms.Label lblFrames;
private System.Windows.Forms.Label lblPkIn;
private System.Windows.Forms.Label lblPkOut;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.Label lblFps;
}
}