FormServer.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. namespace GameEditorPluginServer.Server
  2. {
  3. partial class FormServer
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormServer));
  30. this.pictureBoxRoomLayer = new System.Windows.Forms.PictureBox();
  31. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  32. this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
  33. this.btn_AddPlayer = new System.Windows.Forms.ToolStripMenuItem();
  34. this.btn_EmulateDelay = new System.Windows.Forms.ToolStripMenuItem();
  35. this.btn_ShowMsgBytes = new System.Windows.Forms.ToolStripMenuItem();
  36. this.disconnectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.btn_GC = new System.Windows.Forms.ToolStripMenuItem();
  38. this.btn_Bots = new System.Windows.Forms.ToolStripMenuItem();
  39. this.toolStripDropDownButton2 = new System.Windows.Forms.ToolStripDropDownButton();
  40. this.chk_ServerVisible = new System.Windows.Forms.ToolStripMenuItem();
  41. this.chk_EnableAOI = new System.Windows.Forms.ToolStripMenuItem();
  42. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  43. this.lbl_Status = new System.Windows.Forms.ToolStripStatusLabel();
  44. this.timer2 = new CommonFroms.G2D.G2DTimer(this.components);
  45. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
  46. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRoomLayer)).BeginInit();
  47. this.toolStrip1.SuspendLayout();
  48. this.statusStrip1.SuspendLayout();
  49. this.SuspendLayout();
  50. //
  51. // pictureBoxRoomLayer
  52. //
  53. this.pictureBoxRoomLayer.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  54. this.pictureBoxRoomLayer.Dock = System.Windows.Forms.DockStyle.Fill;
  55. this.pictureBoxRoomLayer.Location = new System.Drawing.Point(0, 25);
  56. this.pictureBoxRoomLayer.Name = "pictureBoxRoomLayer";
  57. this.pictureBoxRoomLayer.Size = new System.Drawing.Size(1020, 623);
  58. this.pictureBoxRoomLayer.TabIndex = 0;
  59. this.pictureBoxRoomLayer.TabStop = false;
  60. this.pictureBoxRoomLayer.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBoxRoomLayer_Paint);
  61. this.pictureBoxRoomLayer.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseDown);
  62. this.pictureBoxRoomLayer.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseMove);
  63. this.pictureBoxRoomLayer.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseUp);
  64. //
  65. // toolStrip1
  66. //
  67. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  68. this.toolStripDropDownButton1,
  69. this.toolStripDropDownButton2});
  70. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  71. this.toolStrip1.Name = "toolStrip1";
  72. this.toolStrip1.Size = new System.Drawing.Size(1020, 25);
  73. this.toolStrip1.TabIndex = 1;
  74. this.toolStrip1.Text = "toolStrip1";
  75. //
  76. // toolStripDropDownButton1
  77. //
  78. this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  79. this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  80. this.btn_AddPlayer,
  81. this.btn_EmulateDelay,
  82. this.btn_ShowMsgBytes,
  83. this.disconnectAllToolStripMenuItem,
  84. this.btn_Bots,
  85. this.toolStripMenuItem1,
  86. this.btn_GC});
  87. this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
  88. this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  89. this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
  90. this.toolStripDropDownButton1.Size = new System.Drawing.Size(54, 22);
  91. this.toolStripDropDownButton1.Text = "Menu";
  92. //
  93. // btn_AddPlayer
  94. //
  95. this.btn_AddPlayer.Name = "btn_AddPlayer";
  96. this.btn_AddPlayer.Size = new System.Drawing.Size(231, 22);
  97. this.btn_AddPlayer.Text = "AddPlayer";
  98. this.btn_AddPlayer.Click += new System.EventHandler(this.btn_AddPlayer_Click);
  99. //
  100. // btn_EmulateDelay
  101. //
  102. this.btn_EmulateDelay.Name = "btn_EmulateDelay";
  103. this.btn_EmulateDelay.Size = new System.Drawing.Size(231, 22);
  104. this.btn_EmulateDelay.Text = "Emulate Net Delay";
  105. this.btn_EmulateDelay.Click += new System.EventHandler(this.btn_EmulateDelay_Click);
  106. //
  107. // btn_ShowMsgBytes
  108. //
  109. this.btn_ShowMsgBytes.Name = "btn_ShowMsgBytes";
  110. this.btn_ShowMsgBytes.Size = new System.Drawing.Size(231, 22);
  111. this.btn_ShowMsgBytes.Text = "Show Message Type Bytes";
  112. this.btn_ShowMsgBytes.Click += new System.EventHandler(this.btn_ShowMsgBytes_Click);
  113. //
  114. // disconnectAllToolStripMenuItem
  115. //
  116. this.disconnectAllToolStripMenuItem.Name = "disconnectAllToolStripMenuItem";
  117. this.disconnectAllToolStripMenuItem.Size = new System.Drawing.Size(231, 22);
  118. this.disconnectAllToolStripMenuItem.Text = "Disconnect All";
  119. this.disconnectAllToolStripMenuItem.Click += new System.EventHandler(this.btn_disconnectAll_Click);
  120. //
  121. // btn_GC
  122. //
  123. this.btn_GC.Name = "btn_GC";
  124. this.btn_GC.ShortcutKeys = System.Windows.Forms.Keys.F2;
  125. this.btn_GC.Size = new System.Drawing.Size(231, 22);
  126. this.btn_GC.Text = "GC";
  127. this.btn_GC.Click += new System.EventHandler(this.btn_GC_Click);
  128. //
  129. // btn_Bots
  130. //
  131. this.btn_Bots.Name = "btn_Bots";
  132. this.btn_Bots.Size = new System.Drawing.Size(231, 22);
  133. this.btn_Bots.Text = "Bots";
  134. this.btn_Bots.Click += new System.EventHandler(this.btn_Bots_Click);
  135. //
  136. // toolStripDropDownButton2
  137. //
  138. this.toolStripDropDownButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  139. this.toolStripDropDownButton2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  140. this.chk_ServerVisible,
  141. this.chk_EnableAOI});
  142. this.toolStripDropDownButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton2.Image")));
  143. this.toolStripDropDownButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
  144. this.toolStripDropDownButton2.Name = "toolStripDropDownButton2";
  145. this.toolStripDropDownButton2.Size = new System.Drawing.Size(67, 22);
  146. this.toolStripDropDownButton2.Text = "Options";
  147. //
  148. // chk_ServerVisible
  149. //
  150. this.chk_ServerVisible.Checked = true;
  151. this.chk_ServerVisible.CheckOnClick = true;
  152. this.chk_ServerVisible.CheckState = System.Windows.Forms.CheckState.Checked;
  153. this.chk_ServerVisible.Name = "chk_ServerVisible";
  154. this.chk_ServerVisible.Size = new System.Drawing.Size(155, 22);
  155. this.chk_ServerVisible.Text = "Server Visible";
  156. //
  157. // chk_EnableAOI
  158. //
  159. this.chk_EnableAOI.Checked = true;
  160. this.chk_EnableAOI.CheckOnClick = true;
  161. this.chk_EnableAOI.CheckState = System.Windows.Forms.CheckState.Checked;
  162. this.chk_EnableAOI.Name = "chk_EnableAOI";
  163. this.chk_EnableAOI.Size = new System.Drawing.Size(155, 22);
  164. this.chk_EnableAOI.Text = "Enable AOI";
  165. this.chk_EnableAOI.Click += new System.EventHandler(this.chk_EnableAOI_Click);
  166. //
  167. // statusStrip1
  168. //
  169. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  170. this.lbl_Status});
  171. this.statusStrip1.Location = new System.Drawing.Point(0, 648);
  172. this.statusStrip1.Name = "statusStrip1";
  173. this.statusStrip1.Size = new System.Drawing.Size(1020, 22);
  174. this.statusStrip1.TabIndex = 2;
  175. this.statusStrip1.Text = "statusStrip1";
  176. //
  177. // lbl_Status
  178. //
  179. this.lbl_Status.Name = "lbl_Status";
  180. this.lbl_Status.Size = new System.Drawing.Size(131, 17);
  181. this.lbl_Status.Text = "toolStripStatusLabel1";
  182. //
  183. // timer2
  184. //
  185. this.timer2.Enabled = true;
  186. this.timer2.Interval = 33;
  187. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  188. //
  189. // toolStripMenuItem1
  190. //
  191. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  192. this.toolStripMenuItem1.Size = new System.Drawing.Size(228, 6);
  193. //
  194. // FormServer
  195. //
  196. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  197. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  198. this.ClientSize = new System.Drawing.Size(1020, 670);
  199. this.Controls.Add(this.pictureBoxRoomLayer);
  200. this.Controls.Add(this.toolStrip1);
  201. this.Controls.Add(this.statusStrip1);
  202. this.Name = "FormServer";
  203. this.Text = "FormServer";
  204. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRoomLayer)).EndInit();
  205. this.toolStrip1.ResumeLayout(false);
  206. this.toolStrip1.PerformLayout();
  207. this.statusStrip1.ResumeLayout(false);
  208. this.statusStrip1.PerformLayout();
  209. this.ResumeLayout(false);
  210. this.PerformLayout();
  211. }
  212. #endregion
  213. private System.Windows.Forms.ToolStrip toolStrip1;
  214. private System.Windows.Forms.StatusStrip statusStrip1;
  215. private System.Windows.Forms.ToolStripStatusLabel lbl_Status;
  216. private CommonFroms.G2D.G2DTimer timer2;
  217. private System.Windows.Forms.PictureBox pictureBoxRoomLayer;
  218. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1;
  219. private System.Windows.Forms.ToolStripMenuItem btn_AddPlayer;
  220. private System.Windows.Forms.ToolStripMenuItem btn_EmulateDelay;
  221. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton2;
  222. private System.Windows.Forms.ToolStripMenuItem chk_ServerVisible;
  223. private System.Windows.Forms.ToolStripMenuItem btn_ShowMsgBytes;
  224. private System.Windows.Forms.ToolStripMenuItem btn_GC;
  225. private System.Windows.Forms.ToolStripMenuItem disconnectAllToolStripMenuItem;
  226. private System.Windows.Forms.ToolStripMenuItem chk_EnableAOI;
  227. private System.Windows.Forms.ToolStripMenuItem btn_Bots;
  228. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
  229. }
  230. }