Editor.Designer.cs 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  1. namespace CommonAIEditor
  2. {
  3. partial class Editor
  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(Editor));
  30. this.tabControl1 = new System.Windows.Forms.TabControl();
  31. this.tabPageScene = new System.Windows.Forms.TabPage();
  32. this.tabPageUnits = new System.Windows.Forms.TabPage();
  33. this.tabPageSkills = new System.Windows.Forms.TabPage();
  34. this.tabPageSpells = new System.Windows.Forms.TabPage();
  35. this.tabPageBuffs = new System.Windows.Forms.TabPage();
  36. this.tabPageItems = new System.Windows.Forms.TabPage();
  37. this.tabPageUnitTriggers = new System.Windows.Forms.TabPage();
  38. this.tabPageUnitEvents = new System.Windows.Forms.TabPage();
  39. this.tabPageResource = new System.Windows.Forms.TabPage();
  40. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  41. this.treeViewRes = new System.Windows.Forms.TreeView();
  42. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  43. this.listViewRes = new System.Windows.Forms.ListView();
  44. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  45. this.toolStrip2 = new System.Windows.Forms.ToolStrip();
  46. this.btnRefreshRes = new System.Windows.Forms.ToolStripButton();
  47. this.btnRemoveRes = new System.Windows.Forms.ToolStripButton();
  48. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  49. this.btnRunRes = new System.Windows.Forms.ToolStripButton();
  50. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  51. this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
  52. this.btn_saveALL = new System.Windows.Forms.ToolStripMenuItem();
  53. this.btn_saveALLCheck = new System.Windows.Forms.ToolStripMenuItem();
  54. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
  55. this.btn_LoadLanguageCsv = new System.Windows.Forms.ToolStripMenuItem();
  56. this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
  57. this.btn_CleanRes = new System.Windows.Forms.ToolStripMenuItem();
  58. this.btn_OutputRes = new System.Windows.Forms.ToolStripMenuItem();
  59. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
  60. this.btn_PlayBattleRecord = new System.Windows.Forms.ToolStripMenuItem();
  61. this.toolStripDropDownButton3 = new System.Windows.Forms.ToolStripDropDownButton();
  62. this.btn_CopyText = new System.Windows.Forms.ToolStripMenuItem();
  63. this.toolStripDropDownButton2 = new System.Windows.Forms.ToolStripDropDownButton();
  64. this.btn_SetTemplateConfig = new System.Windows.Forms.ToolStripMenuItem();
  65. this.btn_SetTemplateExtConfig = new System.Windows.Forms.ToolStripMenuItem();
  66. this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
  67. this.btn_DefineTerrain = new System.Windows.Forms.ToolStripMenuItem();
  68. this.btn_UnitActionDefinition = new System.Windows.Forms.ToolStripMenuItem();
  69. this.toolStripPlugins = new System.Windows.Forms.ToolStripDropDownButton();
  70. this.btn_ScriptEdit = new System.Windows.Forms.ToolStripMenuItem();
  71. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  72. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  73. this.fileSystemWatcher1 = new System.IO.FileSystemWatcher();
  74. this.btn_exportAll = new System.Windows.Forms.ToolStripMenuItem();
  75. this.tabControl1.SuspendLayout();
  76. this.tabPageResource.SuspendLayout();
  77. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  78. this.splitContainer1.Panel1.SuspendLayout();
  79. this.splitContainer1.Panel2.SuspendLayout();
  80. this.splitContainer1.SuspendLayout();
  81. this.toolStrip2.SuspendLayout();
  82. this.toolStrip1.SuspendLayout();
  83. this.statusStrip1.SuspendLayout();
  84. ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).BeginInit();
  85. this.SuspendLayout();
  86. //
  87. // tabControl1
  88. //
  89. this.tabControl1.Controls.Add(this.tabPageScene);
  90. this.tabControl1.Controls.Add(this.tabPageUnits);
  91. this.tabControl1.Controls.Add(this.tabPageSkills);
  92. this.tabControl1.Controls.Add(this.tabPageSpells);
  93. this.tabControl1.Controls.Add(this.tabPageBuffs);
  94. this.tabControl1.Controls.Add(this.tabPageItems);
  95. this.tabControl1.Controls.Add(this.tabPageUnitTriggers);
  96. this.tabControl1.Controls.Add(this.tabPageUnitEvents);
  97. this.tabControl1.Controls.Add(this.tabPageResource);
  98. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  99. this.tabControl1.ImageList = this.imageList1;
  100. this.tabControl1.Location = new System.Drawing.Point(0, 25);
  101. this.tabControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  102. this.tabControl1.Name = "tabControl1";
  103. this.tabControl1.SelectedIndex = 0;
  104. this.tabControl1.Size = new System.Drawing.Size(1259, 760);
  105. this.tabControl1.TabIndex = 7;
  106. //
  107. // tabPageScene
  108. //
  109. this.tabPageScene.ImageKey = "icon_scene.png";
  110. this.tabPageScene.Location = new System.Drawing.Point(4, 26);
  111. this.tabPageScene.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  112. this.tabPageScene.Name = "tabPageScene";
  113. this.tabPageScene.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
  114. this.tabPageScene.Size = new System.Drawing.Size(1251, 730);
  115. this.tabPageScene.TabIndex = 1;
  116. this.tabPageScene.Text = "场景";
  117. this.tabPageScene.UseVisualStyleBackColor = true;
  118. //
  119. // tabPageUnits
  120. //
  121. this.tabPageUnits.ImageKey = "icon_res_2.png";
  122. this.tabPageUnits.Location = new System.Drawing.Point(4, 26);
  123. this.tabPageUnits.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  124. this.tabPageUnits.Name = "tabPageUnits";
  125. this.tabPageUnits.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
  126. this.tabPageUnits.Size = new System.Drawing.Size(1251, 730);
  127. this.tabPageUnits.TabIndex = 0;
  128. this.tabPageUnits.Text = "单位";
  129. this.tabPageUnits.UseVisualStyleBackColor = true;
  130. //
  131. // tabPageSkills
  132. //
  133. this.tabPageSkills.ImageKey = "icon_res_3.png";
  134. this.tabPageSkills.Location = new System.Drawing.Point(4, 26);
  135. this.tabPageSkills.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  136. this.tabPageSkills.Name = "tabPageSkills";
  137. this.tabPageSkills.Size = new System.Drawing.Size(1251, 730);
  138. this.tabPageSkills.TabIndex = 2;
  139. this.tabPageSkills.Text = "技能";
  140. this.tabPageSkills.UseVisualStyleBackColor = true;
  141. //
  142. // tabPageSpells
  143. //
  144. this.tabPageSpells.ImageKey = "icon_res_8.png";
  145. this.tabPageSpells.Location = new System.Drawing.Point(4, 26);
  146. this.tabPageSpells.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  147. this.tabPageSpells.Name = "tabPageSpells";
  148. this.tabPageSpells.Size = new System.Drawing.Size(1251, 730);
  149. this.tabPageSpells.TabIndex = 3;
  150. this.tabPageSpells.Text = "法术";
  151. this.tabPageSpells.UseVisualStyleBackColor = true;
  152. //
  153. // tabPageBuffs
  154. //
  155. this.tabPageBuffs.ImageKey = "icon_res_5.png";
  156. this.tabPageBuffs.Location = new System.Drawing.Point(4, 26);
  157. this.tabPageBuffs.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  158. this.tabPageBuffs.Name = "tabPageBuffs";
  159. this.tabPageBuffs.Size = new System.Drawing.Size(1251, 730);
  160. this.tabPageBuffs.TabIndex = 5;
  161. this.tabPageBuffs.Text = "BUFF";
  162. this.tabPageBuffs.UseVisualStyleBackColor = true;
  163. //
  164. // tabPageItems
  165. //
  166. this.tabPageItems.ImageKey = "icon_res_4.png";
  167. this.tabPageItems.Location = new System.Drawing.Point(4, 26);
  168. this.tabPageItems.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  169. this.tabPageItems.Name = "tabPageItems";
  170. this.tabPageItems.Size = new System.Drawing.Size(1251, 730);
  171. this.tabPageItems.TabIndex = 4;
  172. this.tabPageItems.Text = "物品";
  173. this.tabPageItems.UseVisualStyleBackColor = true;
  174. //
  175. // tabPageUnitTriggers
  176. //
  177. this.tabPageUnitTriggers.ImageKey = "icon_res_5.png";
  178. this.tabPageUnitTriggers.Location = new System.Drawing.Point(4, 26);
  179. this.tabPageUnitTriggers.Name = "tabPageUnitTriggers";
  180. this.tabPageUnitTriggers.Size = new System.Drawing.Size(1251, 730);
  181. this.tabPageUnitTriggers.TabIndex = 7;
  182. this.tabPageUnitTriggers.Text = "单位触发器";
  183. this.tabPageUnitTriggers.UseVisualStyleBackColor = true;
  184. //
  185. // tabPageUnitEvents
  186. //
  187. this.tabPageUnitEvents.ImageKey = "icon_res_9.png";
  188. this.tabPageUnitEvents.Location = new System.Drawing.Point(4, 26);
  189. this.tabPageUnitEvents.Name = "tabPageUnitEvents";
  190. this.tabPageUnitEvents.Size = new System.Drawing.Size(1251, 730);
  191. this.tabPageUnitEvents.TabIndex = 8;
  192. this.tabPageUnitEvents.Text = "单位事件";
  193. this.tabPageUnitEvents.UseVisualStyleBackColor = true;
  194. //
  195. // tabPageResource
  196. //
  197. this.tabPageResource.Controls.Add(this.splitContainer1);
  198. this.tabPageResource.ImageKey = "icon_res.png";
  199. this.tabPageResource.Location = new System.Drawing.Point(4, 26);
  200. this.tabPageResource.Name = "tabPageResource";
  201. this.tabPageResource.Size = new System.Drawing.Size(1251, 730);
  202. this.tabPageResource.TabIndex = 6;
  203. this.tabPageResource.Text = "资源";
  204. this.tabPageResource.UseVisualStyleBackColor = true;
  205. //
  206. // splitContainer1
  207. //
  208. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  209. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  210. this.splitContainer1.Name = "splitContainer1";
  211. //
  212. // splitContainer1.Panel1
  213. //
  214. this.splitContainer1.Panel1.Controls.Add(this.treeViewRes);
  215. //
  216. // splitContainer1.Panel2
  217. //
  218. this.splitContainer1.Panel2.Controls.Add(this.listViewRes);
  219. this.splitContainer1.Panel2.Controls.Add(this.toolStrip2);
  220. this.splitContainer1.Size = new System.Drawing.Size(1251, 730);
  221. this.splitContainer1.SplitterDistance = 658;
  222. this.splitContainer1.TabIndex = 1;
  223. //
  224. // treeViewRes
  225. //
  226. this.treeViewRes.AllowDrop = true;
  227. this.treeViewRes.Dock = System.Windows.Forms.DockStyle.Fill;
  228. this.treeViewRes.ImageIndex = 0;
  229. this.treeViewRes.ImageList = this.imageList1;
  230. this.treeViewRes.Location = new System.Drawing.Point(0, 0);
  231. this.treeViewRes.Name = "treeViewRes";
  232. this.treeViewRes.SelectedImageIndex = 0;
  233. this.treeViewRes.Size = new System.Drawing.Size(658, 730);
  234. this.treeViewRes.TabIndex = 0;
  235. this.treeViewRes.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeViewRes_ItemDrag);
  236. this.treeViewRes.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeViewRes_NodeMouseDoubleClick);
  237. //
  238. // imageList1
  239. //
  240. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  241. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  242. this.imageList1.Images.SetKeyName(0, "close12.png");
  243. this.imageList1.Images.SetKeyName(1, "icon_action.png");
  244. this.imageList1.Images.SetKeyName(2, "icon_affect.png");
  245. this.imageList1.Images.SetKeyName(3, "icon_camera.png");
  246. this.imageList1.Images.SetKeyName(4, "icon_condition.png");
  247. this.imageList1.Images.SetKeyName(5, "icon_cpj.png");
  248. this.imageList1.Images.SetKeyName(6, "icon_cpj_48.png");
  249. this.imageList1.Images.SetKeyName(7, "icon_edit.png");
  250. this.imageList1.Images.SetKeyName(8, "icon_edit_48.png");
  251. this.imageList1.Images.SetKeyName(9, "icon_error.png");
  252. this.imageList1.Images.SetKeyName(10, "icon_event.png");
  253. this.imageList1.Images.SetKeyName(11, "icon_grid.png");
  254. this.imageList1.Images.SetKeyName(12, "icon_hd.png");
  255. this.imageList1.Images.SetKeyName(13, "icon_layer.png");
  256. this.imageList1.Images.SetKeyName(14, "icon_quest.png");
  257. this.imageList1.Images.SetKeyName(15, "icon_quest_condition.png");
  258. this.imageList1.Images.SetKeyName(16, "icon_quest_event.png");
  259. this.imageList1.Images.SetKeyName(17, "icon_quest_group.png");
  260. this.imageList1.Images.SetKeyName(18, "icon_quest_result.png");
  261. this.imageList1.Images.SetKeyName(19, "icon_refresh.png");
  262. this.imageList1.Images.SetKeyName(20, "icon_res_1.png");
  263. this.imageList1.Images.SetKeyName(21, "icon_res_2.png");
  264. this.imageList1.Images.SetKeyName(22, "icon_res_3.png");
  265. this.imageList1.Images.SetKeyName(23, "icon_res_4.png");
  266. this.imageList1.Images.SetKeyName(24, "icon_res_5.png");
  267. this.imageList1.Images.SetKeyName(25, "icon_res_6.png");
  268. this.imageList1.Images.SetKeyName(26, "icon_res_7.png");
  269. this.imageList1.Images.SetKeyName(27, "icon_res_8.png");
  270. this.imageList1.Images.SetKeyName(28, "icon_res_9.png");
  271. this.imageList1.Images.SetKeyName(29, "icon_run.png");
  272. this.imageList1.Images.SetKeyName(30, "icon_scene.png");
  273. this.imageList1.Images.SetKeyName(31, "icon_scene_graph.png");
  274. this.imageList1.Images.SetKeyName(32, "icon_talk.png");
  275. this.imageList1.Images.SetKeyName(33, "icon_trigger.png");
  276. this.imageList1.Images.SetKeyName(34, "icons_bar.png");
  277. this.imageList1.Images.SetKeyName(35, "icons_tool_bar1.png");
  278. this.imageList1.Images.SetKeyName(36, "icons_tool_bar2.png");
  279. this.imageList1.Images.SetKeyName(37, "icons_tool_bar3.png");
  280. this.imageList1.Images.SetKeyName(38, "img_item_info.png");
  281. this.imageList1.Images.SetKeyName(39, "img_job_trainer.png");
  282. this.imageList1.Images.SetKeyName(40, "img_mail.png");
  283. this.imageList1.Images.SetKeyName(41, "img_npc_bank.png");
  284. this.imageList1.Images.SetKeyName(42, "img_quest_info.png");
  285. this.imageList1.Images.SetKeyName(43, "img_quest_info2.png");
  286. this.imageList1.Images.SetKeyName(44, "img_script.png");
  287. this.imageList1.Images.SetKeyName(45, "img_sell_item.png");
  288. this.imageList1.Images.SetKeyName(46, "img_skill_trainer.png");
  289. this.imageList1.Images.SetKeyName(47, "img_talk.png");
  290. this.imageList1.Images.SetKeyName(48, "img_transport.png");
  291. this.imageList1.Images.SetKeyName(49, "light64.png");
  292. this.imageList1.Images.SetKeyName(50, "lock.png");
  293. this.imageList1.Images.SetKeyName(51, "splash.jpg");
  294. this.imageList1.Images.SetKeyName(52, "icon_res.png");
  295. //
  296. // listViewRes
  297. //
  298. this.listViewRes.AllowDrop = true;
  299. this.listViewRes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  300. this.columnHeader1});
  301. this.listViewRes.Dock = System.Windows.Forms.DockStyle.Fill;
  302. this.listViewRes.HideSelection = false;
  303. this.listViewRes.Location = new System.Drawing.Point(0, 25);
  304. this.listViewRes.Name = "listViewRes";
  305. this.listViewRes.Size = new System.Drawing.Size(589, 705);
  306. this.listViewRes.SmallImageList = this.imageList1;
  307. this.listViewRes.TabIndex = 1;
  308. this.listViewRes.UseCompatibleStateImageBehavior = false;
  309. this.listViewRes.View = System.Windows.Forms.View.Details;
  310. this.listViewRes.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView1_DragDrop);
  311. this.listViewRes.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView1_DragEnter);
  312. this.listViewRes.DragOver += new System.Windows.Forms.DragEventHandler(this.listView1_DragOver);
  313. //
  314. // columnHeader1
  315. //
  316. this.columnHeader1.Text = "File";
  317. this.columnHeader1.Width = 271;
  318. //
  319. // toolStrip2
  320. //
  321. this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  322. this.btnRefreshRes,
  323. this.btnRemoveRes,
  324. this.toolStripSeparator1,
  325. this.btnRunRes});
  326. this.toolStrip2.Location = new System.Drawing.Point(0, 0);
  327. this.toolStrip2.Name = "toolStrip2";
  328. this.toolStrip2.Size = new System.Drawing.Size(589, 25);
  329. this.toolStrip2.TabIndex = 0;
  330. this.toolStrip2.Text = "toolStrip2";
  331. //
  332. // btnRefreshRes
  333. //
  334. this.btnRefreshRes.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  335. this.btnRefreshRes.Image = ((System.Drawing.Image)(resources.GetObject("btnRefreshRes.Image")));
  336. this.btnRefreshRes.ImageTransparentColor = System.Drawing.Color.Magenta;
  337. this.btnRefreshRes.Name = "btnRefreshRes";
  338. this.btnRefreshRes.Size = new System.Drawing.Size(23, 22);
  339. this.btnRefreshRes.Text = "清除";
  340. this.btnRefreshRes.Click += new System.EventHandler(this.btnRefreshRes_Click);
  341. //
  342. // btnRemoveRes
  343. //
  344. this.btnRemoveRes.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  345. this.btnRemoveRes.Image = ((System.Drawing.Image)(resources.GetObject("btnRemoveRes.Image")));
  346. this.btnRemoveRes.ImageTransparentColor = System.Drawing.Color.Magenta;
  347. this.btnRemoveRes.Name = "btnRemoveRes";
  348. this.btnRemoveRes.Size = new System.Drawing.Size(23, 22);
  349. this.btnRemoveRes.Text = "删除选中的";
  350. this.btnRemoveRes.Click += new System.EventHandler(this.btnRemoveRes_Click);
  351. //
  352. // toolStripSeparator1
  353. //
  354. this.toolStripSeparator1.Name = "toolStripSeparator1";
  355. this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
  356. //
  357. // btnRunRes
  358. //
  359. this.btnRunRes.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  360. this.btnRunRes.Image = ((System.Drawing.Image)(resources.GetObject("btnRunRes.Image")));
  361. this.btnRunRes.ImageTransparentColor = System.Drawing.Color.Magenta;
  362. this.btnRunRes.Name = "btnRunRes";
  363. this.btnRunRes.Size = new System.Drawing.Size(23, 22);
  364. this.btnRunRes.Text = "查看";
  365. this.btnRunRes.Click += new System.EventHandler(this.btnRunRes_Click);
  366. //
  367. // toolStrip1
  368. //
  369. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  370. this.toolStripDropDownButton1,
  371. this.toolStripDropDownButton3,
  372. this.toolStripDropDownButton2,
  373. this.toolStripPlugins});
  374. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  375. this.toolStrip1.Name = "toolStrip1";
  376. this.toolStrip1.Size = new System.Drawing.Size(1259, 25);
  377. this.toolStrip1.TabIndex = 1;
  378. this.toolStrip1.Text = "toolStrip1";
  379. //
  380. // toolStripDropDownButton1
  381. //
  382. this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  383. this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  384. this.btn_saveALL,
  385. this.btn_saveALLCheck,
  386. this.btn_exportAll,
  387. this.toolStripMenuItem1,
  388. this.btn_LoadLanguageCsv,
  389. this.toolStripMenuItem3,
  390. this.btn_CleanRes,
  391. this.btn_OutputRes,
  392. this.toolStripMenuItem2,
  393. this.btn_PlayBattleRecord});
  394. this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
  395. this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
  396. this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
  397. this.toolStripDropDownButton1.Size = new System.Drawing.Size(45, 22);
  398. this.toolStripDropDownButton1.Text = "文件";
  399. this.toolStripDropDownButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  400. //
  401. // btn_saveALL
  402. //
  403. this.btn_saveALL.Image = ((System.Drawing.Image)(resources.GetObject("btn_saveALL.Image")));
  404. this.btn_saveALL.Name = "btn_saveALL";
  405. this.btn_saveALL.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
  406. this.btn_saveALL.Size = new System.Drawing.Size(180, 22);
  407. this.btn_saveALL.Text = "保存所有";
  408. this.btn_saveALL.Click += new System.EventHandler(this.btn_saveAll_Click);
  409. //
  410. // btn_saveALLCheck
  411. //
  412. this.btn_saveALLCheck.Name = "btn_saveALLCheck";
  413. this.btn_saveALLCheck.Size = new System.Drawing.Size(180, 22);
  414. this.btn_saveALLCheck.Text = "保存并检测";
  415. this.btn_saveALLCheck.Click += new System.EventHandler(this.btn_saveALLCheck_Click);
  416. //
  417. // toolStripMenuItem1
  418. //
  419. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  420. this.toolStripMenuItem1.Size = new System.Drawing.Size(177, 6);
  421. //
  422. // btn_LoadLanguageCsv
  423. //
  424. this.btn_LoadLanguageCsv.Name = "btn_LoadLanguageCsv";
  425. this.btn_LoadLanguageCsv.Size = new System.Drawing.Size(180, 22);
  426. this.btn_LoadLanguageCsv.Text = "载入语言文件";
  427. this.btn_LoadLanguageCsv.Click += new System.EventHandler(this.btn_LoadLanguageCsv_Click);
  428. //
  429. // toolStripMenuItem3
  430. //
  431. this.toolStripMenuItem3.Name = "toolStripMenuItem3";
  432. this.toolStripMenuItem3.Size = new System.Drawing.Size(177, 6);
  433. //
  434. // btn_CleanRes
  435. //
  436. this.btn_CleanRes.Name = "btn_CleanRes";
  437. this.btn_CleanRes.Size = new System.Drawing.Size(180, 22);
  438. this.btn_CleanRes.Text = "检测无用资源";
  439. this.btn_CleanRes.Click += new System.EventHandler(this.btn_CleanRes_Click);
  440. //
  441. // btn_OutputRes
  442. //
  443. this.btn_OutputRes.Name = "btn_OutputRes";
  444. this.btn_OutputRes.Size = new System.Drawing.Size(180, 22);
  445. this.btn_OutputRes.Text = "导出资源";
  446. this.btn_OutputRes.Click += new System.EventHandler(this.btn_OutputRes_Click);
  447. //
  448. // toolStripMenuItem2
  449. //
  450. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  451. this.toolStripMenuItem2.Size = new System.Drawing.Size(177, 6);
  452. //
  453. // btn_PlayBattleRecord
  454. //
  455. this.btn_PlayBattleRecord.Name = "btn_PlayBattleRecord";
  456. this.btn_PlayBattleRecord.Size = new System.Drawing.Size(180, 22);
  457. this.btn_PlayBattleRecord.Text = "播放战报(Win32)";
  458. this.btn_PlayBattleRecord.Click += new System.EventHandler(this.btn_PlayBattleRecord_Click);
  459. //
  460. // toolStripDropDownButton3
  461. //
  462. this.toolStripDropDownButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  463. this.toolStripDropDownButton3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  464. this.btn_CopyText});
  465. this.toolStripDropDownButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton3.Image")));
  466. this.toolStripDropDownButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
  467. this.toolStripDropDownButton3.Name = "toolStripDropDownButton3";
  468. this.toolStripDropDownButton3.Size = new System.Drawing.Size(45, 22);
  469. this.toolStripDropDownButton3.Text = "编辑";
  470. //
  471. // btn_CopyText
  472. //
  473. this.btn_CopyText.Name = "btn_CopyText";
  474. this.btn_CopyText.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
  475. this.btn_CopyText.Size = new System.Drawing.Size(181, 22);
  476. this.btn_CopyText.Text = "拷贝为文本";
  477. this.btn_CopyText.Click += new System.EventHandler(this.btn_CopyText_Click);
  478. //
  479. // toolStripDropDownButton2
  480. //
  481. this.toolStripDropDownButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  482. this.toolStripDropDownButton2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  483. this.btn_SetTemplateConfig,
  484. this.btn_SetTemplateExtConfig,
  485. this.toolStripMenuItem4,
  486. this.btn_DefineTerrain,
  487. this.btn_UnitActionDefinition});
  488. this.toolStripDropDownButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton2.Image")));
  489. this.toolStripDropDownButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
  490. this.toolStripDropDownButton2.Name = "toolStripDropDownButton2";
  491. this.toolStripDropDownButton2.Size = new System.Drawing.Size(45, 22);
  492. this.toolStripDropDownButton2.Text = "设置";
  493. //
  494. // btn_SetTemplateConfig
  495. //
  496. this.btn_SetTemplateConfig.Name = "btn_SetTemplateConfig";
  497. this.btn_SetTemplateConfig.Size = new System.Drawing.Size(136, 22);
  498. this.btn_SetTemplateConfig.Text = "游戏参数";
  499. this.btn_SetTemplateConfig.Click += new System.EventHandler(this.btn_SetTemplateConfig_Click);
  500. //
  501. // btn_SetTemplateExtConfig
  502. //
  503. this.btn_SetTemplateExtConfig.Name = "btn_SetTemplateExtConfig";
  504. this.btn_SetTemplateExtConfig.Size = new System.Drawing.Size(136, 22);
  505. this.btn_SetTemplateExtConfig.Text = "扩展参数";
  506. this.btn_SetTemplateExtConfig.Click += new System.EventHandler(this.btn_SetTemplateExtConfig_Click);
  507. //
  508. // toolStripMenuItem4
  509. //
  510. this.toolStripMenuItem4.Name = "toolStripMenuItem4";
  511. this.toolStripMenuItem4.Size = new System.Drawing.Size(133, 6);
  512. //
  513. // btn_DefineTerrain
  514. //
  515. this.btn_DefineTerrain.Name = "btn_DefineTerrain";
  516. this.btn_DefineTerrain.Size = new System.Drawing.Size(136, 22);
  517. this.btn_DefineTerrain.Text = "定义地图块";
  518. this.btn_DefineTerrain.Click += new System.EventHandler(this.btn_DefineTerrain_Click);
  519. //
  520. // btn_UnitActionDefinition
  521. //
  522. this.btn_UnitActionDefinition.Name = "btn_UnitActionDefinition";
  523. this.btn_UnitActionDefinition.Size = new System.Drawing.Size(136, 22);
  524. this.btn_UnitActionDefinition.Text = "定义动作";
  525. this.btn_UnitActionDefinition.Click += new System.EventHandler(this.btn_DefineUnitAction_Click);
  526. //
  527. // toolStripPlugins
  528. //
  529. this.toolStripPlugins.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  530. this.toolStripPlugins.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  531. this.btn_ScriptEdit});
  532. this.toolStripPlugins.Image = ((System.Drawing.Image)(resources.GetObject("toolStripPlugins.Image")));
  533. this.toolStripPlugins.ImageTransparentColor = System.Drawing.Color.Magenta;
  534. this.toolStripPlugins.Name = "toolStripPlugins";
  535. this.toolStripPlugins.Size = new System.Drawing.Size(45, 22);
  536. this.toolStripPlugins.Text = "扩展";
  537. //
  538. // btn_ScriptEdit
  539. //
  540. this.btn_ScriptEdit.Enabled = false;
  541. this.btn_ScriptEdit.Image = ((System.Drawing.Image)(resources.GetObject("btn_ScriptEdit.Image")));
  542. this.btn_ScriptEdit.Name = "btn_ScriptEdit";
  543. this.btn_ScriptEdit.Size = new System.Drawing.Size(136, 22);
  544. this.btn_ScriptEdit.Text = "脚本编辑器";
  545. this.btn_ScriptEdit.Click += new System.EventHandler(this.btn_ScriptEdit_Click);
  546. //
  547. // statusStrip1
  548. //
  549. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  550. this.toolStripStatusLabel1});
  551. this.statusStrip1.Location = new System.Drawing.Point(0, 785);
  552. this.statusStrip1.Name = "statusStrip1";
  553. this.statusStrip1.Size = new System.Drawing.Size(1259, 22);
  554. this.statusStrip1.TabIndex = 8;
  555. this.statusStrip1.Text = "statusStrip1";
  556. //
  557. // toolStripStatusLabel1
  558. //
  559. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  560. this.toolStripStatusLabel1.Size = new System.Drawing.Size(39, 17);
  561. this.toolStripStatusLabel1.Text = "Label";
  562. //
  563. // fileSystemWatcher1
  564. //
  565. this.fileSystemWatcher1.EnableRaisingEvents = true;
  566. this.fileSystemWatcher1.SynchronizingObject = this;
  567. //
  568. // btn_exportAll
  569. //
  570. this.btn_exportAll.Name = "btn_exportAll";
  571. this.btn_exportAll.Size = new System.Drawing.Size(180, 22);
  572. this.btn_exportAll.Text = "导出所有配置";
  573. this.btn_exportAll.Click += new System.EventHandler(this.btn_exportAll_Click);
  574. //
  575. // Editor
  576. //
  577. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  578. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  579. this.ClientSize = new System.Drawing.Size(1259, 807);
  580. this.Controls.Add(this.tabControl1);
  581. this.Controls.Add(this.statusStrip1);
  582. this.Controls.Add(this.toolStrip1);
  583. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  584. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  585. this.ImeMode = System.Windows.Forms.ImeMode.On;
  586. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  587. this.Name = "Editor";
  588. this.Text = "GameEditor";
  589. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Editor_FormClosing);
  590. this.Load += new System.EventHandler(this.Editor_Load);
  591. this.tabControl1.ResumeLayout(false);
  592. this.tabPageResource.ResumeLayout(false);
  593. this.splitContainer1.Panel1.ResumeLayout(false);
  594. this.splitContainer1.Panel2.ResumeLayout(false);
  595. this.splitContainer1.Panel2.PerformLayout();
  596. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  597. this.splitContainer1.ResumeLayout(false);
  598. this.toolStrip2.ResumeLayout(false);
  599. this.toolStrip2.PerformLayout();
  600. this.toolStrip1.ResumeLayout(false);
  601. this.toolStrip1.PerformLayout();
  602. this.statusStrip1.ResumeLayout(false);
  603. this.statusStrip1.PerformLayout();
  604. ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).EndInit();
  605. this.ResumeLayout(false);
  606. this.PerformLayout();
  607. }
  608. #endregion
  609. private System.Windows.Forms.ToolStrip toolStrip1;
  610. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1;
  611. private System.Windows.Forms.TabControl tabControl1;
  612. private System.Windows.Forms.TabPage tabPageUnits;
  613. private System.Windows.Forms.TabPage tabPageScene;
  614. private System.Windows.Forms.ToolStripMenuItem btn_saveALL;
  615. private System.Windows.Forms.TabPage tabPageSkills;
  616. private System.Windows.Forms.TabPage tabPageSpells;
  617. private System.Windows.Forms.TabPage tabPageItems;
  618. private System.Windows.Forms.ImageList imageList1;
  619. private System.Windows.Forms.TabPage tabPageBuffs;
  620. private System.Windows.Forms.StatusStrip statusStrip1;
  621. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
  622. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton2;
  623. private System.Windows.Forms.ToolStripMenuItem btn_SetTemplateConfig;
  624. private System.Windows.Forms.TabPage tabPageResource;
  625. private System.Windows.Forms.TreeView treeViewRes;
  626. private System.IO.FileSystemWatcher fileSystemWatcher1;
  627. private System.Windows.Forms.SplitContainer splitContainer1;
  628. private System.Windows.Forms.ToolStrip toolStrip2;
  629. private System.Windows.Forms.ListView listViewRes;
  630. private System.Windows.Forms.ToolStripButton btnRunRes;
  631. private System.Windows.Forms.ToolStripButton btnRefreshRes;
  632. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  633. private System.Windows.Forms.ColumnHeader columnHeader1;
  634. private System.Windows.Forms.ToolStripButton btnRemoveRes;
  635. private System.Windows.Forms.ToolStripDropDownButton toolStripPlugins;
  636. private System.Windows.Forms.ToolStripMenuItem btn_ScriptEdit;
  637. private System.Windows.Forms.ToolStripMenuItem btn_CleanRes;
  638. private System.Windows.Forms.TabPage tabPageUnitTriggers;
  639. private System.Windows.Forms.ToolStripMenuItem btn_saveALLCheck;
  640. private System.Windows.Forms.ToolStripMenuItem btn_SetTemplateExtConfig;
  641. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
  642. private System.Windows.Forms.ToolStripMenuItem btn_LoadLanguageCsv;
  643. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
  644. private System.Windows.Forms.ToolStripMenuItem btn_PlayBattleRecord;
  645. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
  646. private System.Windows.Forms.ToolStripMenuItem btn_OutputRes;
  647. private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton3;
  648. private System.Windows.Forms.ToolStripMenuItem btn_CopyText;
  649. private System.Windows.Forms.TabPage tabPageUnitEvents;
  650. private System.Windows.Forms.ToolStripMenuItem btn_DefineTerrain;
  651. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem4;
  652. private System.Windows.Forms.ToolStripMenuItem btn_UnitActionDefinition;
  653. private System.Windows.Forms.ToolStripMenuItem btn_exportAll;
  654. }
  655. }