EventEditor.Designer.cs 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. using CommonAI.Zone.ZoneEditor;
  2. namespace CommonAIEditor.EventEditor
  3. {
  4. partial class EventEditor
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EventEditor));
  31. System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("临时变量");
  32. System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("事件开端");
  33. System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("条件");
  34. System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("动作");
  35. this.eventMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
  36. this.dataMenu_AddLocalVar = new System.Windows.Forms.ToolStripMenuItem();
  37. this.dataMenu_AddTrigger = new System.Windows.Forms.ToolStripMenuItem();
  38. this.dataMenu_AddCondition = new System.Windows.Forms.ToolStripMenuItem();
  39. this.dataMenu_AddAction = new System.Windows.Forms.ToolStripMenuItem();
  40. this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
  41. this.dataMenu_UP = new System.Windows.Forms.ToolStripMenuItem();
  42. this.dataMenu_Down = new System.Windows.Forms.ToolStripMenuItem();
  43. this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
  44. this.dataMenu_Copy = new System.Windows.Forms.ToolStripMenuItem();
  45. this.dataMenu_Paste = new System.Windows.Forms.ToolStripMenuItem();
  46. this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
  47. this.dataMenu_Delete = new System.Windows.Forms.ToolStripMenuItem();
  48. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  49. this.treeViewEvents = new System.Windows.Forms.TreeView();
  50. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  51. this.splitContainerEventData = new System.Windows.Forms.SplitContainer();
  52. this.txt_EventComment = new CommonFroms.G2D.G2DRichTextBox();
  53. this.panel1 = new System.Windows.Forms.Panel();
  54. this.label4 = new System.Windows.Forms.Label();
  55. this.numericDelayTimeMS = new System.Windows.Forms.NumericUpDown();
  56. this.chk_EnableEvent = new System.Windows.Forms.CheckBox();
  57. this.label1 = new System.Windows.Forms.Label();
  58. this.splitContainer3 = new System.Windows.Forms.SplitContainer();
  59. this.treeView2 = new System.Windows.Forms.TreeView();
  60. this.txt_EventFunction = new CommonFroms.G2D.G2DRichTextBox();
  61. this.panel3 = new System.Windows.Forms.Panel();
  62. this.label3 = new System.Windows.Forms.Label();
  63. this.panel2 = new System.Windows.Forms.Panel();
  64. this.btn_moveAwardDown = new System.Windows.Forms.Button();
  65. this.btn_moveAwardUP = new System.Windows.Forms.Button();
  66. this.label2 = new System.Windows.Forms.Label();
  67. this.toolStrip2 = new System.Windows.Forms.ToolStrip();
  68. this.tool_Edit = new System.Windows.Forms.ToolStripDropDownButton();
  69. this.btn_Copy = new System.Windows.Forms.ToolStripMenuItem();
  70. this.btn_Paste = new System.Windows.Forms.ToolStripMenuItem();
  71. this.btn_CopyToClipboard = new System.Windows.Forms.ToolStripMenuItem();
  72. this.btn_Delete = new System.Windows.Forms.ToolStripMenuItem();
  73. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  74. this.groupMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
  75. this.menu_AddZoneEvent = new System.Windows.Forms.ToolStripMenuItem();
  76. this.menu_AddGroup = new System.Windows.Forms.ToolStripMenuItem();
  77. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
  78. this.menu_RenameZoneEvent = new System.Windows.Forms.ToolStripMenuItem();
  79. this.menu_CopyZoneEvent = new System.Windows.Forms.ToolStripMenuItem();
  80. this.menu_ParseZoneEvent = new System.Windows.Forms.ToolStripMenuItem();
  81. this.menu_DeleteZoneEvent = new System.Windows.Forms.ToolStripMenuItem();
  82. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
  83. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  84. this.eventMenuStrip.SuspendLayout();
  85. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  86. this.splitContainer1.Panel1.SuspendLayout();
  87. this.splitContainer1.Panel2.SuspendLayout();
  88. this.splitContainer1.SuspendLayout();
  89. ((System.ComponentModel.ISupportInitialize)(this.splitContainerEventData)).BeginInit();
  90. this.splitContainerEventData.Panel1.SuspendLayout();
  91. this.splitContainerEventData.Panel2.SuspendLayout();
  92. this.splitContainerEventData.SuspendLayout();
  93. this.panel1.SuspendLayout();
  94. ((System.ComponentModel.ISupportInitialize)(this.numericDelayTimeMS)).BeginInit();
  95. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
  96. this.splitContainer3.Panel1.SuspendLayout();
  97. this.splitContainer3.Panel2.SuspendLayout();
  98. this.splitContainer3.SuspendLayout();
  99. this.panel3.SuspendLayout();
  100. this.panel2.SuspendLayout();
  101. this.toolStrip2.SuspendLayout();
  102. this.groupMenuStrip.SuspendLayout();
  103. this.tableLayoutPanel1.SuspendLayout();
  104. this.SuspendLayout();
  105. //
  106. // eventMenuStrip
  107. //
  108. this.eventMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  109. this.dataMenu_AddLocalVar,
  110. this.dataMenu_AddTrigger,
  111. this.dataMenu_AddCondition,
  112. this.dataMenu_AddAction,
  113. this.toolStripMenuItem3,
  114. this.dataMenu_UP,
  115. this.dataMenu_Down,
  116. this.toolStripMenuItem5,
  117. this.dataMenu_Copy,
  118. this.dataMenu_Paste,
  119. this.toolStripMenuItem4,
  120. this.dataMenu_Delete});
  121. this.eventMenuStrip.Name = "eventMenuStrip";
  122. this.eventMenuStrip.Size = new System.Drawing.Size(149, 220);
  123. this.eventMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.eventMenuStrip_Opening);
  124. //
  125. // dataMenu_AddLocalVar
  126. //
  127. this.dataMenu_AddLocalVar.Image = ((System.Drawing.Image)(resources.GetObject("dataMenu_AddLocalVar.Image")));
  128. this.dataMenu_AddLocalVar.Name = "dataMenu_AddLocalVar";
  129. this.dataMenu_AddLocalVar.Size = new System.Drawing.Size(148, 22);
  130. this.dataMenu_AddLocalVar.Text = "添加临时变量";
  131. this.dataMenu_AddLocalVar.Click += new System.EventHandler(this.dataMenu_AddLocalVar_Click);
  132. //
  133. // dataMenu_AddTrigger
  134. //
  135. this.dataMenu_AddTrigger.Image = ((System.Drawing.Image)(resources.GetObject("dataMenu_AddTrigger.Image")));
  136. this.dataMenu_AddTrigger.Name = "dataMenu_AddTrigger";
  137. this.dataMenu_AddTrigger.Size = new System.Drawing.Size(148, 22);
  138. this.dataMenu_AddTrigger.Text = "添加事件开端";
  139. this.dataMenu_AddTrigger.Click += new System.EventHandler(this.dataMenu_AddTrigger_Click);
  140. //
  141. // dataMenu_AddCondition
  142. //
  143. this.dataMenu_AddCondition.Image = ((System.Drawing.Image)(resources.GetObject("dataMenu_AddCondition.Image")));
  144. this.dataMenu_AddCondition.Name = "dataMenu_AddCondition";
  145. this.dataMenu_AddCondition.Size = new System.Drawing.Size(148, 22);
  146. this.dataMenu_AddCondition.Text = "添加条件";
  147. this.dataMenu_AddCondition.Click += new System.EventHandler(this.dataMenu_AddCondition_Click);
  148. //
  149. // dataMenu_AddAction
  150. //
  151. this.dataMenu_AddAction.Image = ((System.Drawing.Image)(resources.GetObject("dataMenu_AddAction.Image")));
  152. this.dataMenu_AddAction.Name = "dataMenu_AddAction";
  153. this.dataMenu_AddAction.Size = new System.Drawing.Size(148, 22);
  154. this.dataMenu_AddAction.Text = "添加动作";
  155. this.dataMenu_AddAction.Click += new System.EventHandler(this.dataMenu_AddAction_Click);
  156. //
  157. // toolStripMenuItem3
  158. //
  159. this.toolStripMenuItem3.Name = "toolStripMenuItem3";
  160. this.toolStripMenuItem3.Size = new System.Drawing.Size(145, 6);
  161. //
  162. // dataMenu_UP
  163. //
  164. this.dataMenu_UP.Image = ((System.Drawing.Image)(resources.GetObject("dataMenu_UP.Image")));
  165. this.dataMenu_UP.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  166. this.dataMenu_UP.Name = "dataMenu_UP";
  167. this.dataMenu_UP.Size = new System.Drawing.Size(148, 22);
  168. this.dataMenu_UP.Text = "向上";
  169. this.dataMenu_UP.Click += new System.EventHandler(this.dataMenu_UP_Click);
  170. //
  171. // dataMenu_Down
  172. //
  173. this.dataMenu_Down.Image = ((System.Drawing.Image)(resources.GetObject("dataMenu_Down.Image")));
  174. this.dataMenu_Down.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  175. this.dataMenu_Down.Name = "dataMenu_Down";
  176. this.dataMenu_Down.Size = new System.Drawing.Size(148, 22);
  177. this.dataMenu_Down.Text = "向下";
  178. this.dataMenu_Down.Click += new System.EventHandler(this.dataMenu_Down_Click);
  179. //
  180. // toolStripMenuItem5
  181. //
  182. this.toolStripMenuItem5.Name = "toolStripMenuItem5";
  183. this.toolStripMenuItem5.Size = new System.Drawing.Size(145, 6);
  184. //
  185. // dataMenu_Copy
  186. //
  187. this.dataMenu_Copy.Name = "dataMenu_Copy";
  188. this.dataMenu_Copy.Size = new System.Drawing.Size(148, 22);
  189. this.dataMenu_Copy.Text = "复制";
  190. this.dataMenu_Copy.Click += new System.EventHandler(this.dataMenu_Copy_Click);
  191. //
  192. // dataMenu_Paste
  193. //
  194. this.dataMenu_Paste.Name = "dataMenu_Paste";
  195. this.dataMenu_Paste.Size = new System.Drawing.Size(148, 22);
  196. this.dataMenu_Paste.Text = "粘贴";
  197. this.dataMenu_Paste.Click += new System.EventHandler(this.dataMenu_Paste_Click);
  198. //
  199. // toolStripMenuItem4
  200. //
  201. this.toolStripMenuItem4.Name = "toolStripMenuItem4";
  202. this.toolStripMenuItem4.Size = new System.Drawing.Size(145, 6);
  203. //
  204. // dataMenu_Delete
  205. //
  206. this.dataMenu_Delete.Name = "dataMenu_Delete";
  207. this.dataMenu_Delete.Size = new System.Drawing.Size(148, 22);
  208. this.dataMenu_Delete.Text = "删除";
  209. this.dataMenu_Delete.Click += new System.EventHandler(this.dataMenu_Delete_Click);
  210. //
  211. // splitContainer1
  212. //
  213. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  214. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  215. this.splitContainer1.Location = new System.Drawing.Point(0, 25);
  216. this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  217. this.splitContainer1.Name = "splitContainer1";
  218. //
  219. // splitContainer1.Panel1
  220. //
  221. this.splitContainer1.Panel1.Controls.Add(this.treeViewEvents);
  222. //
  223. // splitContainer1.Panel2
  224. //
  225. this.splitContainer1.Panel2.Controls.Add(this.splitContainerEventData);
  226. this.splitContainer1.Size = new System.Drawing.Size(937, 826);
  227. this.splitContainer1.SplitterDistance = 255;
  228. this.splitContainer1.SplitterWidth = 5;
  229. this.splitContainer1.TabIndex = 1;
  230. //
  231. // treeViewEvents
  232. //
  233. this.treeViewEvents.AllowDrop = true;
  234. this.treeViewEvents.Dock = System.Windows.Forms.DockStyle.Fill;
  235. this.treeViewEvents.FullRowSelect = true;
  236. this.treeViewEvents.HideSelection = false;
  237. this.treeViewEvents.ImageIndex = 0;
  238. this.treeViewEvents.ImageList = this.imageList1;
  239. this.treeViewEvents.Location = new System.Drawing.Point(0, 0);
  240. this.treeViewEvents.Name = "treeViewEvents";
  241. this.treeViewEvents.PathSeparator = "/";
  242. this.treeViewEvents.SelectedImageIndex = 0;
  243. this.treeViewEvents.Size = new System.Drawing.Size(255, 826);
  244. this.treeViewEvents.TabIndex = 0;
  245. this.treeViewEvents.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeViewEvents_ItemDrag);
  246. this.treeViewEvents.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewEvents_AfterSelect);
  247. this.treeViewEvents.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeViewEvents_NodeMouseClick);
  248. this.treeViewEvents.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeViewEvents_NodeMouseDoubleClick);
  249. this.treeViewEvents.DragDrop += new System.Windows.Forms.DragEventHandler(this.treeViewEvents_DragDrop);
  250. this.treeViewEvents.DragEnter += new System.Windows.Forms.DragEventHandler(this.treeViewEvents_DragEnter);
  251. this.treeViewEvents.DragOver += new System.Windows.Forms.DragEventHandler(this.treeViewEvents_DragOver);
  252. this.treeViewEvents.Enter += new System.EventHandler(this.treeView_Enter);
  253. this.treeViewEvents.KeyDown += new System.Windows.Forms.KeyEventHandler(this.treeViewEvents_KeyDown);
  254. this.treeViewEvents.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.treeViewEvents_KeyPress);
  255. this.treeViewEvents.Leave += new System.EventHandler(this.treeView_Leave);
  256. //
  257. // imageList1
  258. //
  259. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  260. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  261. this.imageList1.Images.SetKeyName(0, "icon_error.png");
  262. this.imageList1.Images.SetKeyName(1, "close12.png");
  263. this.imageList1.Images.SetKeyName(2, "icon_action.png");
  264. this.imageList1.Images.SetKeyName(3, "icon_affect.png");
  265. this.imageList1.Images.SetKeyName(4, "icon_camera.png");
  266. this.imageList1.Images.SetKeyName(5, "icon_condition.png");
  267. this.imageList1.Images.SetKeyName(6, "icon_cpj.png");
  268. this.imageList1.Images.SetKeyName(7, "icon_cpj_48.png");
  269. this.imageList1.Images.SetKeyName(8, "icon_edit.png");
  270. this.imageList1.Images.SetKeyName(9, "icon_edit_48.png");
  271. this.imageList1.Images.SetKeyName(10, "icon_error.png");
  272. this.imageList1.Images.SetKeyName(11, "icon_event.png");
  273. this.imageList1.Images.SetKeyName(12, "icon_grid.png");
  274. this.imageList1.Images.SetKeyName(13, "icon_hd.png");
  275. this.imageList1.Images.SetKeyName(14, "icon_layer.png");
  276. this.imageList1.Images.SetKeyName(15, "icon_quest.ico");
  277. this.imageList1.Images.SetKeyName(16, "icon_quest.png");
  278. this.imageList1.Images.SetKeyName(17, "icon_quest_condition.png");
  279. this.imageList1.Images.SetKeyName(18, "icon_quest_event.png");
  280. this.imageList1.Images.SetKeyName(19, "icon_quest_group.png");
  281. this.imageList1.Images.SetKeyName(20, "icon_quest_result.png");
  282. this.imageList1.Images.SetKeyName(21, "icon_refresh.png");
  283. this.imageList1.Images.SetKeyName(22, "icon_res.png");
  284. this.imageList1.Images.SetKeyName(23, "icon_res_1.png");
  285. this.imageList1.Images.SetKeyName(24, "icon_res_2.png");
  286. this.imageList1.Images.SetKeyName(25, "icon_res_3.png");
  287. this.imageList1.Images.SetKeyName(26, "icon_res_4.png");
  288. this.imageList1.Images.SetKeyName(27, "icon_res_5.png");
  289. this.imageList1.Images.SetKeyName(28, "icon_res_6.png");
  290. this.imageList1.Images.SetKeyName(29, "icon_res_7.png");
  291. this.imageList1.Images.SetKeyName(30, "icon_res_8.png");
  292. this.imageList1.Images.SetKeyName(31, "icon_res_9.png");
  293. this.imageList1.Images.SetKeyName(32, "icon_run.png");
  294. this.imageList1.Images.SetKeyName(33, "icon_scene.ico");
  295. this.imageList1.Images.SetKeyName(34, "icon_scene.png");
  296. this.imageList1.Images.SetKeyName(35, "icon_scene_graph.png");
  297. this.imageList1.Images.SetKeyName(36, "icon_talk.png");
  298. this.imageList1.Images.SetKeyName(37, "icon_trigger.png");
  299. this.imageList1.Images.SetKeyName(38, "icon_var.ico");
  300. this.imageList1.Images.SetKeyName(39, "icon_var.png");
  301. this.imageList1.Images.SetKeyName(40, "icons_bar.png");
  302. this.imageList1.Images.SetKeyName(41, "icons_tool_bar1.png");
  303. this.imageList1.Images.SetKeyName(42, "icons_tool_bar2.png");
  304. this.imageList1.Images.SetKeyName(43, "icons_tool_bar3.png");
  305. this.imageList1.Images.SetKeyName(44, "img_item_info.png");
  306. this.imageList1.Images.SetKeyName(45, "img_job_trainer.png");
  307. this.imageList1.Images.SetKeyName(46, "img_mail.png");
  308. this.imageList1.Images.SetKeyName(47, "img_npc_bank.png");
  309. this.imageList1.Images.SetKeyName(48, "img_quest_info.png");
  310. this.imageList1.Images.SetKeyName(49, "img_quest_info2.png");
  311. this.imageList1.Images.SetKeyName(50, "img_script.png");
  312. this.imageList1.Images.SetKeyName(51, "img_sell_item.png");
  313. this.imageList1.Images.SetKeyName(52, "img_skill_trainer.png");
  314. this.imageList1.Images.SetKeyName(53, "img_talk.png");
  315. this.imageList1.Images.SetKeyName(54, "img_transport.png");
  316. this.imageList1.Images.SetKeyName(55, "light64.png");
  317. this.imageList1.Images.SetKeyName(56, "lock.png");
  318. this.imageList1.Images.SetKeyName(57, "splash.jpg");
  319. //
  320. // splitContainerEventData
  321. //
  322. this.splitContainerEventData.Dock = System.Windows.Forms.DockStyle.Fill;
  323. this.splitContainerEventData.Enabled = false;
  324. this.splitContainerEventData.Location = new System.Drawing.Point(0, 0);
  325. this.splitContainerEventData.Name = "splitContainerEventData";
  326. this.splitContainerEventData.Orientation = System.Windows.Forms.Orientation.Horizontal;
  327. //
  328. // splitContainerEventData.Panel1
  329. //
  330. this.splitContainerEventData.Panel1.Controls.Add(this.txt_EventComment);
  331. this.splitContainerEventData.Panel1.Controls.Add(this.panel1);
  332. //
  333. // splitContainerEventData.Panel2
  334. //
  335. this.splitContainerEventData.Panel2.Controls.Add(this.splitContainer3);
  336. this.splitContainerEventData.Panel2.Controls.Add(this.panel2);
  337. this.splitContainerEventData.Size = new System.Drawing.Size(677, 826);
  338. this.splitContainerEventData.SplitterDistance = 163;
  339. this.splitContainerEventData.TabIndex = 1;
  340. //
  341. // txt_EventComment
  342. //
  343. this.txt_EventComment.AcceptsTab = true;
  344. this.txt_EventComment.Dock = System.Windows.Forms.DockStyle.Fill;
  345. this.txt_EventComment.Location = new System.Drawing.Point(0, 63);
  346. this.txt_EventComment.Name = "txt_EventComment";
  347. this.txt_EventComment.Size = new System.Drawing.Size(677, 100);
  348. this.txt_EventComment.TabIndex = 0;
  349. this.txt_EventComment.Text = "";
  350. this.txt_EventComment.TextChanged += new System.EventHandler(this.txt_EventComment_TextChanged);
  351. //
  352. // panel1
  353. //
  354. this.panel1.Controls.Add(this.label1);
  355. this.panel1.Controls.Add(this.tableLayoutPanel1);
  356. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  357. this.panel1.Location = new System.Drawing.Point(0, 0);
  358. this.panel1.MinimumSize = new System.Drawing.Size(677, 63);
  359. this.panel1.Name = "panel1";
  360. this.panel1.Size = new System.Drawing.Size(677, 63);
  361. this.panel1.TabIndex = 2;
  362. //
  363. // label4
  364. //
  365. this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  366. this.label4.AutoSize = true;
  367. this.label4.Location = new System.Drawing.Point(234, 3);
  368. this.label4.Margin = new System.Windows.Forms.Padding(3);
  369. this.label4.Name = "label4";
  370. this.label4.Size = new System.Drawing.Size(88, 17);
  371. this.label4.TabIndex = 3;
  372. this.label4.Text = "延迟执行(毫秒)";
  373. //
  374. // numericDelayTimeMS
  375. //
  376. this.numericDelayTimeMS.Increment = new decimal(new int[] {
  377. 1000,
  378. 0,
  379. 0,
  380. 0});
  381. this.numericDelayTimeMS.Location = new System.Drawing.Point(328, 3);
  382. this.numericDelayTimeMS.Maximum = new decimal(new int[] {
  383. 2000000000,
  384. 0,
  385. 0,
  386. 0});
  387. this.numericDelayTimeMS.Name = "numericDelayTimeMS";
  388. this.numericDelayTimeMS.Size = new System.Drawing.Size(139, 23);
  389. this.numericDelayTimeMS.TabIndex = 2;
  390. //
  391. // chk_EnableEvent
  392. //
  393. this.chk_EnableEvent.AutoSize = true;
  394. this.chk_EnableEvent.Location = new System.Drawing.Point(3, 3);
  395. this.chk_EnableEvent.Name = "chk_EnableEvent";
  396. this.chk_EnableEvent.Size = new System.Drawing.Size(51, 21);
  397. this.chk_EnableEvent.TabIndex = 1;
  398. this.chk_EnableEvent.Text = "开启";
  399. this.chk_EnableEvent.UseVisualStyleBackColor = true;
  400. this.chk_EnableEvent.CheckedChanged += new System.EventHandler(this.chk_EnableEvent_CheckedChanged);
  401. //
  402. // label1
  403. //
  404. this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  405. this.label1.AutoSize = true;
  406. this.label1.Location = new System.Drawing.Point(3, 39);
  407. this.label1.Name = "label1";
  408. this.label1.Size = new System.Drawing.Size(68, 17);
  409. this.label1.TabIndex = 0;
  410. this.label1.Text = "触发器注释";
  411. //
  412. // splitContainer3
  413. //
  414. this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
  415. this.splitContainer3.Location = new System.Drawing.Point(0, 30);
  416. this.splitContainer3.Name = "splitContainer3";
  417. this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
  418. //
  419. // splitContainer3.Panel1
  420. //
  421. this.splitContainer3.Panel1.Controls.Add(this.treeView2);
  422. //
  423. // splitContainer3.Panel2
  424. //
  425. this.splitContainer3.Panel2.Controls.Add(this.txt_EventFunction);
  426. this.splitContainer3.Panel2.Controls.Add(this.panel3);
  427. this.splitContainer3.Size = new System.Drawing.Size(677, 629);
  428. this.splitContainer3.SplitterDistance = 458;
  429. this.splitContainer3.TabIndex = 3;
  430. //
  431. // treeView2
  432. //
  433. this.treeView2.ContextMenuStrip = this.eventMenuStrip;
  434. this.treeView2.Dock = System.Windows.Forms.DockStyle.Fill;
  435. this.treeView2.FullRowSelect = true;
  436. this.treeView2.HideSelection = false;
  437. this.treeView2.ImageIndex = 0;
  438. this.treeView2.ImageList = this.imageList1;
  439. this.treeView2.Location = new System.Drawing.Point(0, 0);
  440. this.treeView2.Name = "treeView2";
  441. treeNode1.ContextMenuStrip = this.eventMenuStrip;
  442. treeNode1.ImageKey = "icon_var.png";
  443. treeNode1.Name = "RootLocalVar";
  444. treeNode1.SelectedImageKey = "icon_var.png";
  445. treeNode1.Text = "临时变量";
  446. treeNode2.ContextMenuStrip = this.eventMenuStrip;
  447. treeNode2.ImageKey = "icon_trigger.png";
  448. treeNode2.Name = "RootTrigger";
  449. treeNode2.SelectedImageKey = "icon_trigger.png";
  450. treeNode2.Text = "事件开端";
  451. treeNode3.ContextMenuStrip = this.eventMenuStrip;
  452. treeNode3.ImageKey = "icon_condition.png";
  453. treeNode3.Name = "RootCondition";
  454. treeNode3.SelectedImageKey = "icon_condition.png";
  455. treeNode3.Text = "条件";
  456. treeNode4.ContextMenuStrip = this.eventMenuStrip;
  457. treeNode4.ImageKey = "icon_run.png";
  458. treeNode4.Name = "RootAction";
  459. treeNode4.SelectedImageKey = "icon_run.png";
  460. treeNode4.Text = "动作";
  461. this.treeView2.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
  462. treeNode1,
  463. treeNode2,
  464. treeNode3,
  465. treeNode4});
  466. this.treeView2.PathSeparator = "/";
  467. this.treeView2.SelectedImageIndex = 0;
  468. this.treeView2.Size = new System.Drawing.Size(677, 458);
  469. this.treeView2.TabIndex = 0;
  470. this.treeView2.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView2_AfterSelect);
  471. this.treeView2.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView2_NodeMouseClick);
  472. this.treeView2.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView2_NodeMouseDoubleClick);
  473. this.treeView2.Enter += new System.EventHandler(this.treeView_Enter);
  474. this.treeView2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.treeView2_KeyDown);
  475. this.treeView2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.treeView2_KeyPress);
  476. this.treeView2.Leave += new System.EventHandler(this.treeView_Leave);
  477. //
  478. // txt_EventFunction
  479. //
  480. this.txt_EventFunction.BackColor = System.Drawing.SystemColors.ControlLight;
  481. this.txt_EventFunction.Dock = System.Windows.Forms.DockStyle.Fill;
  482. this.txt_EventFunction.Location = new System.Drawing.Point(0, 29);
  483. this.txt_EventFunction.Name = "txt_EventFunction";
  484. this.txt_EventFunction.ReadOnly = true;
  485. this.txt_EventFunction.Size = new System.Drawing.Size(677, 138);
  486. this.txt_EventFunction.TabIndex = 0;
  487. this.txt_EventFunction.Text = "";
  488. //
  489. // panel3
  490. //
  491. this.panel3.Controls.Add(this.label3);
  492. this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
  493. this.panel3.Location = new System.Drawing.Point(0, 0);
  494. this.panel3.Name = "panel3";
  495. this.panel3.Size = new System.Drawing.Size(677, 29);
  496. this.panel3.TabIndex = 2;
  497. //
  498. // label3
  499. //
  500. this.label3.AutoSize = true;
  501. this.label3.Location = new System.Drawing.Point(3, 4);
  502. this.label3.Name = "label3";
  503. this.label3.Size = new System.Drawing.Size(44, 17);
  504. this.label3.TabIndex = 1;
  505. this.label3.Text = "表达式";
  506. //
  507. // panel2
  508. //
  509. this.panel2.Controls.Add(this.btn_moveAwardDown);
  510. this.panel2.Controls.Add(this.btn_moveAwardUP);
  511. this.panel2.Controls.Add(this.label2);
  512. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  513. this.panel2.Location = new System.Drawing.Point(0, 0);
  514. this.panel2.Name = "panel2";
  515. this.panel2.Size = new System.Drawing.Size(677, 30);
  516. this.panel2.TabIndex = 1;
  517. //
  518. // btn_moveAwardDown
  519. //
  520. this.btn_moveAwardDown.Image = global::CommonAIEditor.Properties.Resources.Image35;
  521. this.btn_moveAwardDown.Location = new System.Drawing.Point(118, 4);
  522. this.btn_moveAwardDown.Name = "btn_moveAwardDown";
  523. this.btn_moveAwardDown.Size = new System.Drawing.Size(35, 23);
  524. this.btn_moveAwardDown.TabIndex = 2;
  525. this.btn_moveAwardDown.UseVisualStyleBackColor = true;
  526. this.btn_moveAwardDown.Click += new System.EventHandler(this.btn_moveAwardDown_Click);
  527. //
  528. // btn_moveAwardUP
  529. //
  530. this.btn_moveAwardUP.Image = global::CommonAIEditor.Properties.Resources.Image34;
  531. this.btn_moveAwardUP.Location = new System.Drawing.Point(77, 4);
  532. this.btn_moveAwardUP.Name = "btn_moveAwardUP";
  533. this.btn_moveAwardUP.Size = new System.Drawing.Size(35, 23);
  534. this.btn_moveAwardUP.TabIndex = 1;
  535. this.btn_moveAwardUP.UseVisualStyleBackColor = true;
  536. this.btn_moveAwardUP.Click += new System.EventHandler(this.btn_moveAwardUP_Click);
  537. //
  538. // label2
  539. //
  540. this.label2.AutoSize = true;
  541. this.label2.Location = new System.Drawing.Point(3, 10);
  542. this.label2.Name = "label2";
  543. this.label2.Size = new System.Drawing.Size(68, 17);
  544. this.label2.TabIndex = 0;
  545. this.label2.Text = "触发器功能";
  546. //
  547. // toolStrip2
  548. //
  549. this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  550. this.tool_Edit,
  551. this.toolStripSeparator2});
  552. this.toolStrip2.Location = new System.Drawing.Point(0, 0);
  553. this.toolStrip2.Name = "toolStrip2";
  554. this.toolStrip2.Size = new System.Drawing.Size(937, 25);
  555. this.toolStrip2.TabIndex = 5;
  556. this.toolStrip2.Text = "toolStrip2";
  557. //
  558. // tool_Edit
  559. //
  560. this.tool_Edit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  561. this.tool_Edit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  562. this.btn_Copy,
  563. this.btn_Paste,
  564. this.btn_CopyToClipboard,
  565. this.btn_Delete});
  566. this.tool_Edit.ImageTransparentColor = System.Drawing.Color.Magenta;
  567. this.tool_Edit.Name = "tool_Edit";
  568. this.tool_Edit.Size = new System.Drawing.Size(45, 22);
  569. this.tool_Edit.Text = "编辑";
  570. //
  571. // btn_Copy
  572. //
  573. this.btn_Copy.Name = "btn_Copy";
  574. this.btn_Copy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
  575. this.btn_Copy.Size = new System.Drawing.Size(227, 22);
  576. this.btn_Copy.Text = "复制";
  577. this.btn_Copy.Click += new System.EventHandler(this.btn_Copy_Click);
  578. //
  579. // btn_Paste
  580. //
  581. this.btn_Paste.Name = "btn_Paste";
  582. this.btn_Paste.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
  583. this.btn_Paste.Size = new System.Drawing.Size(227, 22);
  584. this.btn_Paste.Text = "粘贴";
  585. this.btn_Paste.Click += new System.EventHandler(this.btn_Paste_Click);
  586. //
  587. // btn_CopyToClipboard
  588. //
  589. this.btn_CopyToClipboard.Name = "btn_CopyToClipboard";
  590. this.btn_CopyToClipboard.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
  591. | System.Windows.Forms.Keys.C)));
  592. this.btn_CopyToClipboard.Size = new System.Drawing.Size(227, 22);
  593. this.btn_CopyToClipboard.Text = "拷贝作为文本";
  594. this.btn_CopyToClipboard.Click += new System.EventHandler(this.btn_CopyToClipboard_Click);
  595. //
  596. // btn_Delete
  597. //
  598. this.btn_Delete.Name = "btn_Delete";
  599. this.btn_Delete.ShortcutKeys = System.Windows.Forms.Keys.Delete;
  600. this.btn_Delete.Size = new System.Drawing.Size(227, 22);
  601. this.btn_Delete.Text = "删除";
  602. this.btn_Delete.Click += new System.EventHandler(this.btn_Delete_Click);
  603. //
  604. // toolStripSeparator2
  605. //
  606. this.toolStripSeparator2.Name = "toolStripSeparator2";
  607. this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
  608. //
  609. // groupMenuStrip
  610. //
  611. this.groupMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  612. this.menu_AddZoneEvent,
  613. this.menu_AddGroup,
  614. this.toolStripMenuItem1,
  615. this.menu_RenameZoneEvent,
  616. this.menu_CopyZoneEvent,
  617. this.menu_ParseZoneEvent,
  618. this.menu_DeleteZoneEvent,
  619. this.toolStripMenuItem2});
  620. this.groupMenuStrip.Name = "groupMenuStrip";
  621. this.groupMenuStrip.Size = new System.Drawing.Size(161, 148);
  622. this.groupMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.groupMenuStrip_Opening);
  623. //
  624. // menu_AddZoneEvent
  625. //
  626. this.menu_AddZoneEvent.Image = ((System.Drawing.Image)(resources.GetObject("menu_AddZoneEvent.Image")));
  627. this.menu_AddZoneEvent.Name = "menu_AddZoneEvent";
  628. this.menu_AddZoneEvent.Size = new System.Drawing.Size(160, 22);
  629. this.menu_AddZoneEvent.Text = "添加事件";
  630. this.menu_AddZoneEvent.Click += new System.EventHandler(this.menu_AddZoneEvent_Click);
  631. //
  632. // menu_AddGroup
  633. //
  634. this.menu_AddGroup.Image = ((System.Drawing.Image)(resources.GetObject("menu_AddGroup.Image")));
  635. this.menu_AddGroup.Name = "menu_AddGroup";
  636. this.menu_AddGroup.Size = new System.Drawing.Size(160, 22);
  637. this.menu_AddGroup.Text = "添加过滤器类别";
  638. this.menu_AddGroup.Click += new System.EventHandler(this.menu_AddGroupToolStripMenuItem_Click);
  639. //
  640. // toolStripMenuItem1
  641. //
  642. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  643. this.toolStripMenuItem1.Size = new System.Drawing.Size(157, 6);
  644. //
  645. // menu_RenameZoneEvent
  646. //
  647. this.menu_RenameZoneEvent.Name = "menu_RenameZoneEvent";
  648. this.menu_RenameZoneEvent.Size = new System.Drawing.Size(160, 22);
  649. this.menu_RenameZoneEvent.Text = "重命名";
  650. this.menu_RenameZoneEvent.Click += new System.EventHandler(this.menu_RenameZoneEvent_Click);
  651. //
  652. // menu_CopyZoneEvent
  653. //
  654. this.menu_CopyZoneEvent.Name = "menu_CopyZoneEvent";
  655. this.menu_CopyZoneEvent.Size = new System.Drawing.Size(160, 22);
  656. this.menu_CopyZoneEvent.Text = "复制";
  657. this.menu_CopyZoneEvent.Click += new System.EventHandler(this.menu_CopyZoneEvent_Click);
  658. //
  659. // menu_ParseZoneEvent
  660. //
  661. this.menu_ParseZoneEvent.Name = "menu_ParseZoneEvent";
  662. this.menu_ParseZoneEvent.Size = new System.Drawing.Size(160, 22);
  663. this.menu_ParseZoneEvent.Text = "粘贴";
  664. this.menu_ParseZoneEvent.Click += new System.EventHandler(this.menu_ParseZoneEvent_Click);
  665. //
  666. // menu_DeleteZoneEvent
  667. //
  668. this.menu_DeleteZoneEvent.Name = "menu_DeleteZoneEvent";
  669. this.menu_DeleteZoneEvent.Size = new System.Drawing.Size(160, 22);
  670. this.menu_DeleteZoneEvent.Text = "删除";
  671. this.menu_DeleteZoneEvent.Click += new System.EventHandler(this.menu_DeleteZoneEvent_Click);
  672. //
  673. // toolStripMenuItem2
  674. //
  675. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  676. this.toolStripMenuItem2.Size = new System.Drawing.Size(157, 6);
  677. //
  678. // tableLayoutPanel1
  679. //
  680. this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  681. | System.Windows.Forms.AnchorStyles.Left)));
  682. this.tableLayoutPanel1.ColumnCount = 3;
  683. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.92308F));
  684. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 71.07692F));
  685. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 351F));
  686. this.tableLayoutPanel1.Controls.Add(this.chk_EnableEvent, 0, 0);
  687. this.tableLayoutPanel1.Controls.Add(this.numericDelayTimeMS, 2, 0);
  688. this.tableLayoutPanel1.Controls.Add(this.label4, 1, 0);
  689. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  690. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  691. this.tableLayoutPanel1.RowCount = 1;
  692. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 41.17647F));
  693. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 58.82353F));
  694. this.tableLayoutPanel1.Size = new System.Drawing.Size(677, 37);
  695. this.tableLayoutPanel1.TabIndex = 4;
  696. //
  697. // EventEditor
  698. //
  699. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  700. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  701. this.ClientSize = new System.Drawing.Size(937, 851);
  702. this.Controls.Add(this.splitContainer1);
  703. this.Controls.Add(this.toolStrip2);
  704. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  705. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  706. this.ImeMode = System.Windows.Forms.ImeMode.On;
  707. this.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  708. this.Name = "EventEditor";
  709. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  710. this.Text = "SceneEventEditor";
  711. this.Load += new System.EventHandler(this.EventEditor_Load);
  712. this.Validating += new System.ComponentModel.CancelEventHandler(this.EventEditor_Validating);
  713. this.eventMenuStrip.ResumeLayout(false);
  714. this.splitContainer1.Panel1.ResumeLayout(false);
  715. this.splitContainer1.Panel2.ResumeLayout(false);
  716. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  717. this.splitContainer1.ResumeLayout(false);
  718. this.splitContainerEventData.Panel1.ResumeLayout(false);
  719. this.splitContainerEventData.Panel2.ResumeLayout(false);
  720. ((System.ComponentModel.ISupportInitialize)(this.splitContainerEventData)).EndInit();
  721. this.splitContainerEventData.ResumeLayout(false);
  722. this.panel1.ResumeLayout(false);
  723. this.panel1.PerformLayout();
  724. ((System.ComponentModel.ISupportInitialize)(this.numericDelayTimeMS)).EndInit();
  725. this.splitContainer3.Panel1.ResumeLayout(false);
  726. this.splitContainer3.Panel2.ResumeLayout(false);
  727. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
  728. this.splitContainer3.ResumeLayout(false);
  729. this.panel3.ResumeLayout(false);
  730. this.panel3.PerformLayout();
  731. this.panel2.ResumeLayout(false);
  732. this.panel2.PerformLayout();
  733. this.toolStrip2.ResumeLayout(false);
  734. this.toolStrip2.PerformLayout();
  735. this.groupMenuStrip.ResumeLayout(false);
  736. this.tableLayoutPanel1.ResumeLayout(false);
  737. this.tableLayoutPanel1.PerformLayout();
  738. this.ResumeLayout(false);
  739. this.PerformLayout();
  740. }
  741. #endregion
  742. private System.Windows.Forms.SplitContainer splitContainer1;
  743. private System.Windows.Forms.ToolStrip toolStrip2;
  744. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  745. private System.Windows.Forms.TreeView treeViewEvents;
  746. private System.Windows.Forms.SplitContainer splitContainerEventData;
  747. private CommonFroms.G2D.G2DRichTextBox txt_EventComment;
  748. private CommonFroms.G2D.G2DRichTextBox txt_EventFunction;
  749. private System.Windows.Forms.TreeView treeView2;
  750. private System.Windows.Forms.Panel panel1;
  751. private System.Windows.Forms.CheckBox chk_EnableEvent;
  752. private System.Windows.Forms.Label label1;
  753. private System.Windows.Forms.Panel panel2;
  754. private System.Windows.Forms.Label label2;
  755. private System.Windows.Forms.ImageList imageList1;
  756. private System.Windows.Forms.SplitContainer splitContainer3;
  757. private System.Windows.Forms.Panel panel3;
  758. private System.Windows.Forms.Label label3;
  759. private System.Windows.Forms.ContextMenuStrip groupMenuStrip;
  760. private System.Windows.Forms.ToolStripMenuItem menu_AddZoneEvent;
  761. private System.Windows.Forms.ToolStripMenuItem menu_AddGroup;
  762. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
  763. private System.Windows.Forms.ToolStripMenuItem menu_CopyZoneEvent;
  764. private System.Windows.Forms.ToolStripMenuItem menu_ParseZoneEvent;
  765. private System.Windows.Forms.ToolStripMenuItem menu_DeleteZoneEvent;
  766. private System.Windows.Forms.ToolStripMenuItem menu_RenameZoneEvent;
  767. private System.Windows.Forms.ContextMenuStrip eventMenuStrip;
  768. private System.Windows.Forms.ToolStripMenuItem dataMenu_AddTrigger;
  769. private System.Windows.Forms.ToolStripMenuItem dataMenu_AddAction;
  770. private System.Windows.Forms.ToolStripDropDownButton tool_Edit;
  771. private System.Windows.Forms.ToolStripMenuItem btn_CopyToClipboard;
  772. private System.Windows.Forms.ToolStripMenuItem dataMenu_Delete;
  773. private System.Windows.Forms.ToolStripMenuItem dataMenu_AddCondition;
  774. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
  775. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
  776. private System.Windows.Forms.ToolStripMenuItem dataMenu_Copy;
  777. private System.Windows.Forms.ToolStripMenuItem dataMenu_Paste;
  778. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem4;
  779. private System.Windows.Forms.Label label4;
  780. private System.Windows.Forms.NumericUpDown numericDelayTimeMS;
  781. private System.Windows.Forms.ToolStripMenuItem dataMenu_AddLocalVar;
  782. private System.Windows.Forms.Button btn_moveAwardUP;
  783. private System.Windows.Forms.Button btn_moveAwardDown;
  784. private System.Windows.Forms.ToolStripMenuItem dataMenu_UP;
  785. private System.Windows.Forms.ToolStripMenuItem dataMenu_Down;
  786. private System.Windows.Forms.ToolStripSeparator toolStripMenuItem5;
  787. private System.Windows.Forms.ToolStripMenuItem btn_Copy;
  788. private System.Windows.Forms.ToolStripMenuItem btn_Paste;
  789. private System.Windows.Forms.ToolStripMenuItem btn_Delete;
  790. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  791. }
  792. }