DataManagerPanel.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. namespace CommonAIEditor
  2. {
  3. partial class DataManagerPanel<T>
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.treeView = new CommonFroms.G2D.G2DTreeView();
  30. this.propertyGrid = new CommonFroms.G2D.DataGrid.G2DPropertyGrid();
  31. this.toolStrip = new System.Windows.Forms.ToolStrip();
  32. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  33. this.groupMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  34. this.groupBtn_AddNode = new System.Windows.Forms.ToolStripMenuItem();
  35. this.groupBtn_AddGroup = new System.Windows.Forms.ToolStripMenuItem();
  36. this.groupBtn_Rename = new System.Windows.Forms.ToolStripMenuItem();
  37. this.groupBtn_EditAll = new System.Windows.Forms.ToolStripMenuItem();
  38. this.groupBtn_Balance = new System.Windows.Forms.ToolStripMenuItem();
  39. this.childMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  40. this.childBtn_SetID = new System.Windows.Forms.ToolStripMenuItem();
  41. this.childBtn_Duplicate = new System.Windows.Forms.ToolStripMenuItem();
  42. this.childBtn_EditGrid = new System.Windows.Forms.ToolStripMenuItem();
  43. this.childBtn_Delete = new System.Windows.Forms.ToolStripMenuItem();
  44. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  45. this.splitContainer1.Panel1.SuspendLayout();
  46. this.splitContainer1.Panel2.SuspendLayout();
  47. this.splitContainer1.SuspendLayout();
  48. this.groupMenu.SuspendLayout();
  49. this.childMenu.SuspendLayout();
  50. this.SuspendLayout();
  51. //
  52. // treeView
  53. //
  54. this.treeView.AllowDrop = true;
  55. this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
  56. this.treeView.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  57. this.treeView.FullRowSelect = true;
  58. this.treeView.HideSelection = false;
  59. this.treeView.ImeMode = System.Windows.Forms.ImeMode.On;
  60. this.treeView.Location = new System.Drawing.Point(0, 25);
  61. this.treeView.Name = "treeView";
  62. this.treeView.PathSeparator = "/";
  63. this.treeView.Size = new System.Drawing.Size(285, 504);
  64. this.treeView.TabIndex = 0;
  65. this.treeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeView_ItemDrag);
  66. this.treeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseClick);
  67. this.treeView.DragDrop += new System.Windows.Forms.DragEventHandler(this.treeView_DragDrop);
  68. this.treeView.DragEnter += new System.Windows.Forms.DragEventHandler(this.treeView_DragEnter);
  69. this.treeView.DragOver += new System.Windows.Forms.DragEventHandler(this.treeView_DragOver);
  70. //
  71. // toolStrip
  72. //
  73. this.toolStrip.Location = new System.Drawing.Point(0, 0);
  74. this.toolStrip.Name = "toolStrip";
  75. this.toolStrip.Size = new System.Drawing.Size(285, 25);
  76. this.toolStrip.TabIndex = 1;
  77. this.toolStrip.Text = "toolStrip1";
  78. //
  79. // splitContainer1
  80. //
  81. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  82. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  83. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  84. this.splitContainer1.Name = "splitContainer1";
  85. //
  86. // splitContainer1.Panel1
  87. //
  88. this.splitContainer1.Panel1.Controls.Add(this.treeView);
  89. this.splitContainer1.Panel1.Controls.Add(this.toolStrip);
  90. //
  91. // splitContainer1.Panel2
  92. //
  93. this.splitContainer1.Panel2.Controls.Add(this.propertyGrid);
  94. this.splitContainer1.Size = new System.Drawing.Size(632, 529);
  95. this.splitContainer1.SplitterDistance = 285;
  96. this.splitContainer1.TabIndex = 2;
  97. //
  98. // propertyGrid
  99. //
  100. this.propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  101. this.propertyGrid.ImeMode = System.Windows.Forms.ImeMode.On;
  102. this.propertyGrid.Location = new System.Drawing.Point(0, 0);
  103. this.propertyGrid.Name = "propertyGrid";
  104. this.propertyGrid.Size = new System.Drawing.Size(343, 529);
  105. this.propertyGrid.TabIndex = 0;
  106. this.propertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGrid_PropertyValueChanged);
  107. //
  108. // groupMenu
  109. //
  110. this.groupMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  111. this.groupBtn_AddNode,
  112. this.groupBtn_AddGroup,
  113. this.groupBtn_Rename,
  114. this.groupBtn_EditAll,
  115. this.groupBtn_Balance});
  116. this.groupMenu.Name = "groupMenu";
  117. this.groupMenu.Size = new System.Drawing.Size(137, 114);
  118. //
  119. // groupBtn_AddNode
  120. //
  121. this.groupBtn_AddNode.Name = "groupBtn_AddNode";
  122. this.groupBtn_AddNode.Size = new System.Drawing.Size(136, 22);
  123. this.groupBtn_AddNode.Click += new System.EventHandler(this.groupBtn_AddNode_Click);
  124. //
  125. // groupBtn_AddGroup
  126. //
  127. this.groupBtn_AddGroup.Name = "groupBtn_AddGroup";
  128. this.groupBtn_AddGroup.Size = new System.Drawing.Size(136, 22);
  129. this.groupBtn_AddGroup.Text = "添加过滤器";
  130. this.groupBtn_AddGroup.Click += new System.EventHandler(this.groupBtn_AddGroup_Click);
  131. //
  132. // groupBtn_Rename
  133. //
  134. this.groupBtn_Rename.Name = "groupBtn_Rename";
  135. this.groupBtn_Rename.Size = new System.Drawing.Size(136, 22);
  136. this.groupBtn_Rename.Text = "重命名";
  137. this.groupBtn_Rename.Click += new System.EventHandler(this.groupBtn_Rename_Click);
  138. //
  139. // groupBtn_EditAll
  140. //
  141. this.groupBtn_EditAll.Name = "groupBtn_EditAll";
  142. this.groupBtn_EditAll.Size = new System.Drawing.Size(136, 22);
  143. this.groupBtn_EditAll.Text = "编辑所有";
  144. this.groupBtn_EditAll.Click += new System.EventHandler(this.groupBtn_EditAll_Click);
  145. //
  146. // groupBtn_Balance
  147. //
  148. this.groupBtn_Balance.Name = "groupBtn_Balance";
  149. this.groupBtn_Balance.Size = new System.Drawing.Size(136, 22);
  150. this.groupBtn_Balance.Text = "配平数据";
  151. this.groupBtn_Balance.Click += new System.EventHandler(this.groupBtn_Balance_Click);
  152. //
  153. // childMenu
  154. //
  155. this.childMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  156. this.childBtn_SetID,
  157. this.childBtn_Duplicate,
  158. this.childBtn_EditGrid,
  159. this.childBtn_Delete});
  160. this.childMenu.Name = "childMenu";
  161. this.childMenu.Size = new System.Drawing.Size(114, 92);
  162. //
  163. // childBtn_SetID
  164. //
  165. this.childBtn_SetID.Name = "childBtn_SetID";
  166. this.childBtn_SetID.Size = new System.Drawing.Size(113, 22);
  167. this.childBtn_SetID.Text = "设置ID";
  168. this.childBtn_SetID.Click += new System.EventHandler(this.childBtn_SetID_Click);
  169. //
  170. // childBtn_Duplicate
  171. //
  172. this.childBtn_Duplicate.Name = "childBtn_Duplicate";
  173. this.childBtn_Duplicate.Size = new System.Drawing.Size(113, 22);
  174. this.childBtn_Duplicate.Text = "复制";
  175. this.childBtn_Duplicate.Click += new System.EventHandler(this.childBtn_Duplicate_Click);
  176. //
  177. // childBtn_EditGrid
  178. //
  179. this.childBtn_EditGrid.Name = "childBtn_EditGrid";
  180. this.childBtn_EditGrid.Size = new System.Drawing.Size(113, 22);
  181. this.childBtn_EditGrid.Text = "编辑";
  182. this.childBtn_EditGrid.Click += new System.EventHandler(this.childBtn_EditSingle_Click);
  183. //
  184. // childBtn_Delete
  185. //
  186. this.childBtn_Delete.Name = "childBtn_Delete";
  187. this.childBtn_Delete.Size = new System.Drawing.Size(113, 22);
  188. this.childBtn_Delete.Text = "删除";
  189. this.childBtn_Delete.Click += new System.EventHandler(this.childBtn_Delete_Click);
  190. //
  191. // DataManagerPanel
  192. //
  193. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  194. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  195. this.Controls.Add(this.splitContainer1);
  196. this.Name = "DataManagerPanel";
  197. this.Size = new System.Drawing.Size(632, 529);
  198. this.splitContainer1.Panel1.ResumeLayout(false);
  199. this.splitContainer1.Panel1.PerformLayout();
  200. this.splitContainer1.Panel2.ResumeLayout(false);
  201. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  202. this.splitContainer1.ResumeLayout(false);
  203. this.groupMenu.ResumeLayout(false);
  204. this.childMenu.ResumeLayout(false);
  205. this.ResumeLayout(false);
  206. }
  207. #endregion
  208. private System.Windows.Forms.ToolStrip toolStrip;
  209. private System.Windows.Forms.SplitContainer splitContainer1;
  210. protected CommonFroms.G2D.G2DTreeView treeView;
  211. protected CommonFroms.G2D.DataGrid.G2DPropertyGrid propertyGrid;
  212. protected System.Windows.Forms.ToolStripMenuItem groupBtn_AddNode;
  213. protected System.Windows.Forms.ToolStripMenuItem groupBtn_AddGroup;
  214. protected System.Windows.Forms.ToolStripMenuItem groupBtn_Rename;
  215. protected System.Windows.Forms.ToolStripMenuItem groupBtn_EditAll;
  216. protected System.Windows.Forms.ToolStripMenuItem groupBtn_Balance;
  217. protected System.Windows.Forms.ContextMenuStrip groupMenu;
  218. protected System.Windows.Forms.ToolStripMenuItem childBtn_SetID;
  219. protected System.Windows.Forms.ToolStripMenuItem childBtn_Duplicate;
  220. protected System.Windows.Forms.ToolStripMenuItem childBtn_EditGrid;
  221. protected System.Windows.Forms.ToolStripMenuItem childBtn_Delete;
  222. protected System.Windows.Forms.ContextMenuStrip childMenu;
  223. }
  224. }