FormTest.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. namespace XmdsServerTest
  2. {
  3. partial class FormTest
  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(FormTest));
  30. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  31. this.listView_Nodes = new System.Windows.Forms.ListView();
  32. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  33. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  34. this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  35. this.pictureBoxRoomLayer = new System.Windows.Forms.PictureBox();
  36. this.timer1 = new System.Windows.Forms.Timer(this.components);
  37. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  38. this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
  39. this.btn_AddScene = new System.Windows.Forms.ToolStripMenuItem();
  40. this.btn_AddAllScene = new System.Windows.Forms.ToolStripMenuItem();
  41. this.btn_AddBatchBots = new System.Windows.Forms.ToolStripMenuItem();
  42. this.gCToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  43. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  44. this.lbl_Status = new System.Windows.Forms.ToolStripStatusLabel();
  45. this.timer2 = new System.Windows.Forms.Timer(this.components);
  46. this.menu_Node = new System.Windows.Forms.ContextMenuStrip(this.components);
  47. this.menuBtn_AddPlayer = new System.Windows.Forms.ToolStripMenuItem();
  48. this.removeAllPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  49. this.addBatchBotsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  50. this.timer3 = new System.Windows.Forms.Timer(this.components);
  51. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  52. this.splitContainer1.Panel1.SuspendLayout();
  53. this.splitContainer1.Panel2.SuspendLayout();
  54. this.splitContainer1.SuspendLayout();
  55. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRoomLayer)).BeginInit();
  56. this.toolStrip1.SuspendLayout();
  57. this.statusStrip1.SuspendLayout();
  58. this.menu_Node.SuspendLayout();
  59. this.SuspendLayout();
  60. //
  61. // splitContainer1
  62. //
  63. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.splitContainer1.Location = new System.Drawing.Point(0, 25);
  65. this.splitContainer1.Name = "splitContainer1";
  66. //
  67. // splitContainer1.Panel1
  68. //
  69. this.splitContainer1.Panel1.Controls.Add(this.listView_Nodes);
  70. //
  71. // splitContainer1.Panel2
  72. //
  73. this.splitContainer1.Panel2.Controls.Add(this.pictureBoxRoomLayer);
  74. this.splitContainer1.Size = new System.Drawing.Size(1020, 623);
  75. this.splitContainer1.SplitterDistance = 340;
  76. this.splitContainer1.TabIndex = 0;
  77. //
  78. // listView_Nodes
  79. //
  80. this.listView_Nodes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  81. this.columnHeader1,
  82. this.columnHeader2,
  83. this.columnHeader3});
  84. this.listView_Nodes.Dock = System.Windows.Forms.DockStyle.Fill;
  85. this.listView_Nodes.FullRowSelect = true;
  86. this.listView_Nodes.GridLines = true;
  87. this.listView_Nodes.HideSelection = false;
  88. this.listView_Nodes.Location = new System.Drawing.Point(0, 0);
  89. this.listView_Nodes.MultiSelect = false;
  90. this.listView_Nodes.Name = "listView_Nodes";
  91. this.listView_Nodes.Size = new System.Drawing.Size(340, 623);
  92. this.listView_Nodes.TabIndex = 0;
  93. this.listView_Nodes.UseCompatibleStateImageBehavior = false;
  94. this.listView_Nodes.View = System.Windows.Forms.View.Details;
  95. this.listView_Nodes.SelectedIndexChanged += new System.EventHandler(this.listView_Nodes_SelectedIndexChanged);
  96. //
  97. // columnHeader1
  98. //
  99. this.columnHeader1.Text = "ID";
  100. this.columnHeader1.Width = 79;
  101. //
  102. // columnHeader2
  103. //
  104. this.columnHeader2.Text = "Name";
  105. this.columnHeader2.Width = 135;
  106. //
  107. // columnHeader3
  108. //
  109. this.columnHeader3.Text = "PlayerCount";
  110. this.columnHeader3.Width = 97;
  111. //
  112. // pictureBoxRoomLayer
  113. //
  114. this.pictureBoxRoomLayer.BackColor = System.Drawing.Color.Black;
  115. this.pictureBoxRoomLayer.Dock = System.Windows.Forms.DockStyle.Fill;
  116. this.pictureBoxRoomLayer.Location = new System.Drawing.Point(0, 0);
  117. this.pictureBoxRoomLayer.Name = "pictureBoxRoomLayer";
  118. this.pictureBoxRoomLayer.Size = new System.Drawing.Size(676, 623);
  119. this.pictureBoxRoomLayer.TabIndex = 0;
  120. this.pictureBoxRoomLayer.TabStop = false;
  121. this.pictureBoxRoomLayer.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBoxRoomLayer_Paint);
  122. this.pictureBoxRoomLayer.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseDown);
  123. this.pictureBoxRoomLayer.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseMove);
  124. this.pictureBoxRoomLayer.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseUp);
  125. //
  126. // timer1
  127. //
  128. this.timer1.Enabled = true;
  129. this.timer1.Interval = 2000;
  130. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  131. //
  132. // toolStrip1
  133. //
  134. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  135. this.toolStripDropDownButton1});
  136. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  137. this.toolStrip1.Name = "toolStrip1";
  138. this.toolStrip1.Size = new System.Drawing.Size(1020, 25);
  139. this.toolStrip1.TabIndex = 1;
  140. this.toolStrip1.Text = "toolStrip1";
  141. //
  142. // toolStripDropDownButton1
  143. //
  144. this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  145. this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  146. this.btn_AddScene,
  147. this.btn_AddAllScene,
  148. this.btn_AddBatchBots,
  149. this.gCToolStripMenuItem});
  150. this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
  151. this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  152. this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
  153. this.toolStripDropDownButton1.Size = new System.Drawing.Size(54, 22);
  154. this.toolStripDropDownButton1.Text = "Menu";
  155. //
  156. // btn_AddScene
  157. //
  158. this.btn_AddScene.Name = "btn_AddScene";
  159. this.btn_AddScene.Size = new System.Drawing.Size(166, 22);
  160. this.btn_AddScene.Text = "Add Scene";
  161. this.btn_AddScene.Click += new System.EventHandler(this.btn_AddScene_Click);
  162. //
  163. // btn_AddAllScene
  164. //
  165. this.btn_AddAllScene.Name = "btn_AddAllScene";
  166. this.btn_AddAllScene.Size = new System.Drawing.Size(166, 22);
  167. this.btn_AddAllScene.Text = "Add All Scene";
  168. this.btn_AddAllScene.Click += new System.EventHandler(this.btn_AddAllScene_Click);
  169. //
  170. // btn_AddBatchBots
  171. //
  172. this.btn_AddBatchBots.Name = "btn_AddBatchBots";
  173. this.btn_AddBatchBots.Size = new System.Drawing.Size(166, 22);
  174. this.btn_AddBatchBots.Text = "Add Batch Bots";
  175. this.btn_AddBatchBots.Click += new System.EventHandler(this.btn_AddBatchBots_Click);
  176. //
  177. // gCToolStripMenuItem
  178. //
  179. this.gCToolStripMenuItem.Name = "gCToolStripMenuItem";
  180. this.gCToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
  181. this.gCToolStripMenuItem.Text = "GC";
  182. this.gCToolStripMenuItem.Click += new System.EventHandler(this.gCToolStripMenuItem_Click);
  183. //
  184. // statusStrip1
  185. //
  186. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  187. this.lbl_Status});
  188. this.statusStrip1.Location = new System.Drawing.Point(0, 648);
  189. this.statusStrip1.Name = "statusStrip1";
  190. this.statusStrip1.Size = new System.Drawing.Size(1020, 22);
  191. this.statusStrip1.TabIndex = 2;
  192. this.statusStrip1.Text = "statusStrip1";
  193. //
  194. // lbl_Status
  195. //
  196. this.lbl_Status.Name = "lbl_Status";
  197. this.lbl_Status.Size = new System.Drawing.Size(131, 17);
  198. this.lbl_Status.Text = "toolStripStatusLabel1";
  199. //
  200. // timer2
  201. //
  202. this.timer2.Enabled = true;
  203. this.timer2.Interval = 33;
  204. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  205. //
  206. // menu_Node
  207. //
  208. this.menu_Node.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  209. this.menuBtn_AddPlayer,
  210. this.removeAllPlayerToolStripMenuItem,
  211. this.addBatchBotsToolStripMenuItem});
  212. this.menu_Node.Name = "menu_Node";
  213. this.menu_Node.Size = new System.Drawing.Size(172, 70);
  214. //
  215. // menuBtn_AddPlayer
  216. //
  217. this.menuBtn_AddPlayer.Name = "menuBtn_AddPlayer";
  218. this.menuBtn_AddPlayer.Size = new System.Drawing.Size(171, 22);
  219. this.menuBtn_AddPlayer.Text = "添加玩家";
  220. this.menuBtn_AddPlayer.Click += new System.EventHandler(this.menuBtn_AddPlayer_Click);
  221. //
  222. // removeAllPlayerToolStripMenuItem
  223. //
  224. this.removeAllPlayerToolStripMenuItem.Name = "removeAllPlayerToolStripMenuItem";
  225. this.removeAllPlayerToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
  226. this.removeAllPlayerToolStripMenuItem.Text = "Remove All Bots";
  227. this.removeAllPlayerToolStripMenuItem.Click += new System.EventHandler(this.removeAllPlayerToolStripMenuItem_Click);
  228. //
  229. // addBatchBotsToolStripMenuItem
  230. //
  231. this.addBatchBotsToolStripMenuItem.Name = "addBatchBotsToolStripMenuItem";
  232. this.addBatchBotsToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
  233. this.addBatchBotsToolStripMenuItem.Text = "Add Batch Bots";
  234. this.addBatchBotsToolStripMenuItem.Click += new System.EventHandler(this.addBatchBotsToolStripMenuItem_Click);
  235. //
  236. // timer3
  237. //
  238. this.timer3.Enabled = true;
  239. this.timer3.Interval = 120000;
  240. this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
  241. //
  242. // FormTest
  243. //
  244. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  245. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  246. this.ClientSize = new System.Drawing.Size(1020, 670);
  247. this.Controls.Add(this.splitContainer1);
  248. this.Controls.Add(this.toolStrip1);
  249. this.Controls.Add(this.statusStrip1);
  250. this.Name = "FormTest";
  251. this.Text = "Form1";
  252. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormTest_FormClosing);
  253. this.splitContainer1.Panel1.ResumeLayout(false);
  254. this.splitContainer1.Panel2.ResumeLayout(false);
  255. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  256. this.splitContainer1.ResumeLayout(false);
  257. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRoomLayer)).EndInit();
  258. this.toolStrip1.ResumeLayout(false);
  259. this.toolStrip1.PerformLayout();
  260. this.statusStrip1.ResumeLayout(false);
  261. this.statusStrip1.PerformLayout();
  262. this.menu_Node.ResumeLayout(false);
  263. this.ResumeLayout(false);
  264. this.PerformLayout();
  265. }
  266. #endregion
  267. private System.Windows.Forms.SplitContainer splitContainer1;
  268. private System.Windows.Forms.ListView listView_Nodes;
  269. private System.Windows.Forms.ColumnHeader columnHeader1;
  270. private System.Windows.Forms.ColumnHeader columnHeader2;
  271. private System.Windows.Forms.ColumnHeader columnHeader3;
  272. private System.Windows.Forms.Timer timer1;
  273. private System.Windows.Forms.ToolStrip toolStrip1;
  274. private System.Windows.Forms.StatusStrip statusStrip1;
  275. private System.Windows.Forms.ToolStripStatusLabel lbl_Status;
  276. private System.Windows.Forms.Timer timer2;
  277. private System.Windows.Forms.ContextMenuStrip menu_Node;
  278. private System.Windows.Forms.ToolStripMenuItem menuBtn_AddPlayer;
  279. private System.Windows.Forms.PictureBox pictureBoxRoomLayer;
  280. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1;
  281. private System.Windows.Forms.ToolStripMenuItem btn_AddScene;
  282. private System.Windows.Forms.ToolStripMenuItem btn_AddAllScene;
  283. private System.Windows.Forms.ToolStripMenuItem btn_AddBatchBots;
  284. private System.Windows.Forms.ToolStripMenuItem gCToolStripMenuItem;
  285. private System.Windows.Forms.ToolStripMenuItem removeAllPlayerToolStripMenuItem;
  286. private System.Windows.Forms.ToolStripMenuItem addBatchBotsToolStripMenuItem;
  287. private System.Windows.Forms.Timer timer3;
  288. }
  289. }