SampleForm.Designer.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. namespace FormulaEnginePoC.UI
  2. {
  3. partial class SampleForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SampleForm));
  29. this.DataSourceGrid = new System.Windows.Forms.DataGridView();
  30. this.MainToolStrip = new System.Windows.Forms.ToolStrip();
  31. this.NewToolStripButton = new System.Windows.Forms.ToolStripButton();
  32. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  33. this.splitContainer3 = new System.Windows.Forms.SplitContainer();
  34. this.splitContainer4 = new System.Windows.Forms.SplitContainer();
  35. this.FormulaTextBox = new System.Windows.Forms.TextBox();
  36. this.toolStrip4 = new System.Windows.Forms.ToolStrip();
  37. this.NewFormulaToolStripButton = new System.Windows.Forms.ToolStripButton();
  38. this.OperatorToolStripDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
  39. this.FunctionToolStripDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
  40. this.tabControl1 = new System.Windows.Forms.TabControl();
  41. this.tabPage1 = new System.Windows.Forms.TabPage();
  42. this.DepCalcExecPanel = new CodeExecPanel();
  43. this.tabPage2 = new System.Windows.Forms.TabPage();
  44. this.DepFilterExecPanel = new CodeExecPanel();
  45. this.tabPage3 = new System.Windows.Forms.TabPage();
  46. this.CspCalcExecPanel = new CodeExecPanel();
  47. this.tabPage4 = new System.Windows.Forms.TabPage();
  48. this.CspFilterExecPanel = new CodeExecPanel();
  49. this.FieldGrid = new System.Windows.Forms.DataGridView();
  50. this.miniToolStrip = new System.Windows.Forms.ToolStrip();
  51. ((System.ComponentModel.ISupportInitialize)(this.DataSourceGrid)).BeginInit();
  52. this.MainToolStrip.SuspendLayout();
  53. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  54. this.splitContainer1.Panel1.SuspendLayout();
  55. this.splitContainer1.Panel2.SuspendLayout();
  56. this.splitContainer1.SuspendLayout();
  57. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
  58. this.splitContainer3.Panel1.SuspendLayout();
  59. this.splitContainer3.Panel2.SuspendLayout();
  60. this.splitContainer3.SuspendLayout();
  61. ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
  62. this.splitContainer4.Panel1.SuspendLayout();
  63. this.splitContainer4.Panel2.SuspendLayout();
  64. this.splitContainer4.SuspendLayout();
  65. this.toolStrip4.SuspendLayout();
  66. this.tabControl1.SuspendLayout();
  67. this.tabPage1.SuspendLayout();
  68. this.tabPage2.SuspendLayout();
  69. this.tabPage3.SuspendLayout();
  70. this.tabPage4.SuspendLayout();
  71. ((System.ComponentModel.ISupportInitialize)(this.FieldGrid)).BeginInit();
  72. this.SuspendLayout();
  73. //
  74. // DataSourceGrid
  75. //
  76. this.DataSourceGrid.AllowUserToOrderColumns = true;
  77. this.DataSourceGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  78. this.DataSourceGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  79. this.DataSourceGrid.Location = new System.Drawing.Point(0, 0);
  80. this.DataSourceGrid.Name = "DataSourceGrid";
  81. this.DataSourceGrid.RowTemplate.Height = 23;
  82. this.DataSourceGrid.Size = new System.Drawing.Size(668, 594);
  83. this.DataSourceGrid.TabIndex = 0;
  84. //
  85. // MainToolStrip
  86. //
  87. this.MainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  88. this.NewToolStripButton});
  89. this.MainToolStrip.Location = new System.Drawing.Point(0, 0);
  90. this.MainToolStrip.Name = "MainToolStrip";
  91. this.MainToolStrip.Size = new System.Drawing.Size(1831, 25);
  92. this.MainToolStrip.TabIndex = 2;
  93. this.MainToolStrip.Text = "toolStrip1";
  94. //
  95. // NewToolStripButton
  96. //
  97. this.NewToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  98. this.NewToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("NewToolStripButton.Image")));
  99. this.NewToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  100. this.NewToolStripButton.Name = "NewToolStripButton";
  101. this.NewToolStripButton.Size = new System.Drawing.Size(23, 22);
  102. this.NewToolStripButton.Text = "新建(&N)";
  103. this.NewToolStripButton.Click += new System.EventHandler(this.NewToolStripButton_Click);
  104. //
  105. // splitContainer1
  106. //
  107. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  108. this.splitContainer1.Location = new System.Drawing.Point(0, 25);
  109. this.splitContainer1.Name = "splitContainer1";
  110. //
  111. // splitContainer1.Panel1
  112. //
  113. this.splitContainer1.Panel1.Controls.Add(this.DataSourceGrid);
  114. //
  115. // splitContainer1.Panel2
  116. //
  117. this.splitContainer1.Panel2.Controls.Add(this.splitContainer3);
  118. this.splitContainer1.Size = new System.Drawing.Size(1831, 594);
  119. this.splitContainer1.SplitterDistance = 668;
  120. this.splitContainer1.TabIndex = 3;
  121. //
  122. // splitContainer3
  123. //
  124. this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
  125. this.splitContainer3.Location = new System.Drawing.Point(0, 0);
  126. this.splitContainer3.Name = "splitContainer3";
  127. //
  128. // splitContainer3.Panel1
  129. //
  130. this.splitContainer3.Panel1.Controls.Add(this.splitContainer4);
  131. //
  132. // splitContainer3.Panel2
  133. //
  134. this.splitContainer3.Panel2.Controls.Add(this.FieldGrid);
  135. this.splitContainer3.Size = new System.Drawing.Size(1159, 594);
  136. this.splitContainer3.SplitterDistance = 607;
  137. this.splitContainer3.TabIndex = 3;
  138. //
  139. // splitContainer4
  140. //
  141. this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
  142. this.splitContainer4.Location = new System.Drawing.Point(0, 0);
  143. this.splitContainer4.Name = "splitContainer4";
  144. this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
  145. //
  146. // splitContainer4.Panel1
  147. //
  148. this.splitContainer4.Panel1.Controls.Add(this.FormulaTextBox);
  149. this.splitContainer4.Panel1.Controls.Add(this.toolStrip4);
  150. //
  151. // splitContainer4.Panel2
  152. //
  153. this.splitContainer4.Panel2.Controls.Add(this.tabControl1);
  154. this.splitContainer4.Size = new System.Drawing.Size(607, 594);
  155. this.splitContainer4.SplitterDistance = 195;
  156. this.splitContainer4.TabIndex = 1;
  157. //
  158. // FormulaTextBox
  159. //
  160. this.FormulaTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  161. this.FormulaTextBox.HideSelection = false;
  162. this.FormulaTextBox.Location = new System.Drawing.Point(0, 25);
  163. this.FormulaTextBox.Multiline = true;
  164. this.FormulaTextBox.Name = "FormulaTextBox";
  165. this.FormulaTextBox.Size = new System.Drawing.Size(607, 170);
  166. this.FormulaTextBox.TabIndex = 10;
  167. //
  168. // toolStrip4
  169. //
  170. this.toolStrip4.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  171. this.NewFormulaToolStripButton,
  172. this.OperatorToolStripDropDownButton,
  173. this.FunctionToolStripDropDownButton});
  174. this.toolStrip4.Location = new System.Drawing.Point(0, 0);
  175. this.toolStrip4.Name = "toolStrip4";
  176. this.toolStrip4.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  177. this.toolStrip4.Size = new System.Drawing.Size(607, 25);
  178. this.toolStrip4.TabIndex = 9;
  179. this.toolStrip4.Text = "toolStrip4";
  180. //
  181. // NewFormulaToolStripButton
  182. //
  183. this.NewFormulaToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  184. this.NewFormulaToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("NewFormulaToolStripButton.Image")));
  185. this.NewFormulaToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  186. this.NewFormulaToolStripButton.Name = "NewFormulaToolStripButton";
  187. this.NewFormulaToolStripButton.Size = new System.Drawing.Size(23, 22);
  188. this.NewFormulaToolStripButton.Text = "新建(&N)";
  189. this.NewFormulaToolStripButton.Click += new System.EventHandler(this.NewFormulaToolStripButton_Click);
  190. //
  191. // OperatorToolStripDropDownButton
  192. //
  193. this.OperatorToolStripDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  194. this.OperatorToolStripDropDownButton.Image = ((System.Drawing.Image)(resources.GetObject("OperatorToolStripDropDownButton.Image")));
  195. this.OperatorToolStripDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  196. this.OperatorToolStripDropDownButton.Name = "OperatorToolStripDropDownButton";
  197. this.OperatorToolStripDropDownButton.Size = new System.Drawing.Size(57, 22);
  198. this.OperatorToolStripDropDownButton.Text = "操作符";
  199. this.OperatorToolStripDropDownButton.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Insert_DropDownItemClicked);
  200. //
  201. // FunctionToolStripDropDownButton
  202. //
  203. this.FunctionToolStripDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  204. this.FunctionToolStripDropDownButton.Image = ((System.Drawing.Image)(resources.GetObject("FunctionToolStripDropDownButton.Image")));
  205. this.FunctionToolStripDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
  206. this.FunctionToolStripDropDownButton.Name = "FunctionToolStripDropDownButton";
  207. this.FunctionToolStripDropDownButton.Size = new System.Drawing.Size(45, 22);
  208. this.FunctionToolStripDropDownButton.Text = "函数";
  209. this.FunctionToolStripDropDownButton.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Insert_DropDownItemClicked);
  210. //
  211. // tabControl1
  212. //
  213. this.tabControl1.Controls.Add(this.tabPage1);
  214. this.tabControl1.Controls.Add(this.tabPage2);
  215. this.tabControl1.Controls.Add(this.tabPage3);
  216. this.tabControl1.Controls.Add(this.tabPage4);
  217. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  218. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  219. this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
  220. this.tabControl1.Name = "tabControl1";
  221. this.tabControl1.SelectedIndex = 0;
  222. this.tabControl1.Size = new System.Drawing.Size(607, 395);
  223. this.tabControl1.TabIndex = 1;
  224. //
  225. // tabPage1
  226. //
  227. this.tabPage1.Controls.Add(this.DepCalcExecPanel);
  228. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  229. this.tabPage1.Margin = new System.Windows.Forms.Padding(0);
  230. this.tabPage1.Name = "tabPage1";
  231. this.tabPage1.Size = new System.Drawing.Size(599, 369);
  232. this.tabPage1.TabIndex = 0;
  233. this.tabPage1.Text = "DEP计算";
  234. this.tabPage1.UseVisualStyleBackColor = true;
  235. //
  236. // DepCalcExecPanel
  237. //
  238. this.DepCalcExecPanel.Code = "";
  239. this.DepCalcExecPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  240. this.DepCalcExecPanel.Location = new System.Drawing.Point(0, 0);
  241. this.DepCalcExecPanel.Name = "DepCalcExecPanel";
  242. this.DepCalcExecPanel.Result = "";
  243. this.DepCalcExecPanel.Size = new System.Drawing.Size(599, 369);
  244. this.DepCalcExecPanel.TabIndex = 0;
  245. this.DepCalcExecPanel.CompileButtonClicked += new System.EventHandler(this.DepCalcExecPanel_CompileButtonClicked);
  246. this.DepCalcExecPanel.ExecuteButtonClicked += new System.EventHandler(this.DepCalcExecPanel_ExecuteButtonClicked);
  247. //
  248. // tabPage2
  249. //
  250. this.tabPage2.Controls.Add(this.DepFilterExecPanel);
  251. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  252. this.tabPage2.Margin = new System.Windows.Forms.Padding(0);
  253. this.tabPage2.Name = "tabPage2";
  254. this.tabPage2.Size = new System.Drawing.Size(599, 369);
  255. this.tabPage2.TabIndex = 1;
  256. this.tabPage2.Text = "DEP筛选";
  257. this.tabPage2.UseVisualStyleBackColor = true;
  258. //
  259. // DepFilterExecPanel
  260. //
  261. this.DepFilterExecPanel.Code = "";
  262. this.DepFilterExecPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  263. this.DepFilterExecPanel.Location = new System.Drawing.Point(0, 0);
  264. this.DepFilterExecPanel.Name = "DepFilterExecPanel";
  265. this.DepFilterExecPanel.Result = "";
  266. this.DepFilterExecPanel.Size = new System.Drawing.Size(599, 369);
  267. this.DepFilterExecPanel.TabIndex = 0;
  268. this.DepFilterExecPanel.CompileButtonClicked += new System.EventHandler(this.DepFilterExecPanel_CompileButtonClicked);
  269. this.DepFilterExecPanel.ExecuteButtonClicked += new System.EventHandler(this.DepFilterExecPanel_ExecuteButtonClicked);
  270. //
  271. // tabPage3
  272. //
  273. this.tabPage3.Controls.Add(this.CspCalcExecPanel);
  274. this.tabPage3.Location = new System.Drawing.Point(4, 22);
  275. this.tabPage3.Name = "tabPage3";
  276. this.tabPage3.Size = new System.Drawing.Size(599, 369);
  277. this.tabPage3.TabIndex = 2;
  278. this.tabPage3.Text = "CSP计算";
  279. this.tabPage3.UseVisualStyleBackColor = true;
  280. //
  281. // CspCalcExecPanel
  282. //
  283. this.CspCalcExecPanel.Code = "";
  284. this.CspCalcExecPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  285. this.CspCalcExecPanel.Location = new System.Drawing.Point(0, 0);
  286. this.CspCalcExecPanel.Name = "CspCalcExecPanel";
  287. this.CspCalcExecPanel.Result = "";
  288. this.CspCalcExecPanel.Size = new System.Drawing.Size(599, 369);
  289. this.CspCalcExecPanel.TabIndex = 0;
  290. this.CspCalcExecPanel.CompileButtonClicked += new System.EventHandler(this.CspCalcExecPanel_CompileButtonClicked);
  291. this.CspCalcExecPanel.ExecuteButtonClicked += new System.EventHandler(this.CspCalcExecPanel_ExecuteButtonClicked);
  292. //
  293. // tabPage4
  294. //
  295. this.tabPage4.Controls.Add(this.CspFilterExecPanel);
  296. this.tabPage4.Location = new System.Drawing.Point(4, 22);
  297. this.tabPage4.Name = "tabPage4";
  298. this.tabPage4.Size = new System.Drawing.Size(599, 369);
  299. this.tabPage4.TabIndex = 3;
  300. this.tabPage4.Text = "CSP筛选";
  301. this.tabPage4.UseVisualStyleBackColor = true;
  302. //
  303. // CspFilterExecPanel
  304. //
  305. this.CspFilterExecPanel.Code = "";
  306. this.CspFilterExecPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  307. this.CspFilterExecPanel.Location = new System.Drawing.Point(0, 0);
  308. this.CspFilterExecPanel.Name = "CspFilterExecPanel";
  309. this.CspFilterExecPanel.Result = "";
  310. this.CspFilterExecPanel.Size = new System.Drawing.Size(599, 369);
  311. this.CspFilterExecPanel.TabIndex = 0;
  312. this.CspFilterExecPanel.CompileButtonClicked += new System.EventHandler(this.CspFilterExecPanel_CompileButtonClicked);
  313. this.CspFilterExecPanel.ExecuteButtonClicked += new System.EventHandler(this.CspFilterExecPanel_ExecuteButtonClicked);
  314. //
  315. // FieldGrid
  316. //
  317. this.FieldGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  318. this.FieldGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  319. this.FieldGrid.Location = new System.Drawing.Point(0, 0);
  320. this.FieldGrid.Name = "FieldGrid";
  321. this.FieldGrid.ReadOnly = true;
  322. this.FieldGrid.RowTemplate.Height = 23;
  323. this.FieldGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  324. this.FieldGrid.Size = new System.Drawing.Size(548, 594);
  325. this.FieldGrid.TabIndex = 0;
  326. this.FieldGrid.DoubleClick += new System.EventHandler(this.FieldGrid_DoubleClick);
  327. //
  328. // miniToolStrip
  329. //
  330. this.miniToolStrip.AccessibleName = "新项选择";
  331. this.miniToolStrip.AccessibleRole = System.Windows.Forms.AccessibleRole.ButtonDropDown;
  332. this.miniToolStrip.AutoSize = false;
  333. this.miniToolStrip.CanOverflow = false;
  334. this.miniToolStrip.Dock = System.Windows.Forms.DockStyle.None;
  335. this.miniToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
  336. this.miniToolStrip.Location = new System.Drawing.Point(45, 3);
  337. this.miniToolStrip.Name = "miniToolStrip";
  338. this.miniToolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  339. this.miniToolStrip.Size = new System.Drawing.Size(599, 25);
  340. this.miniToolStrip.TabIndex = 3;
  341. //
  342. // SampleForm
  343. //
  344. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  345. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  346. this.ClientSize = new System.Drawing.Size(1831, 619);
  347. this.Controls.Add(this.splitContainer1);
  348. this.Controls.Add(this.MainToolStrip);
  349. this.Name = "SampleForm";
  350. this.Text = "PoC Formula";
  351. ((System.ComponentModel.ISupportInitialize)(this.DataSourceGrid)).EndInit();
  352. this.MainToolStrip.ResumeLayout(false);
  353. this.MainToolStrip.PerformLayout();
  354. this.splitContainer1.Panel1.ResumeLayout(false);
  355. this.splitContainer1.Panel2.ResumeLayout(false);
  356. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  357. this.splitContainer1.ResumeLayout(false);
  358. this.splitContainer3.Panel1.ResumeLayout(false);
  359. this.splitContainer3.Panel2.ResumeLayout(false);
  360. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
  361. this.splitContainer3.ResumeLayout(false);
  362. this.splitContainer4.Panel1.ResumeLayout(false);
  363. this.splitContainer4.Panel1.PerformLayout();
  364. this.splitContainer4.Panel2.ResumeLayout(false);
  365. ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
  366. this.splitContainer4.ResumeLayout(false);
  367. this.toolStrip4.ResumeLayout(false);
  368. this.toolStrip4.PerformLayout();
  369. this.tabControl1.ResumeLayout(false);
  370. this.tabPage1.ResumeLayout(false);
  371. this.tabPage2.ResumeLayout(false);
  372. this.tabPage3.ResumeLayout(false);
  373. this.tabPage4.ResumeLayout(false);
  374. ((System.ComponentModel.ISupportInitialize)(this.FieldGrid)).EndInit();
  375. this.ResumeLayout(false);
  376. this.PerformLayout();
  377. }
  378. #endregion
  379. private System.Windows.Forms.DataGridView DataSourceGrid;
  380. private System.Windows.Forms.ToolStrip MainToolStrip;
  381. private System.Windows.Forms.ToolStripButton NewToolStripButton;
  382. private System.Windows.Forms.SplitContainer splitContainer1;
  383. private System.Windows.Forms.SplitContainer splitContainer3;
  384. private System.Windows.Forms.DataGridView FieldGrid;
  385. private System.Windows.Forms.SplitContainer splitContainer4;
  386. private System.Windows.Forms.TextBox FormulaTextBox;
  387. private System.Windows.Forms.ToolStrip toolStrip4;
  388. private System.Windows.Forms.ToolStripButton NewFormulaToolStripButton;
  389. private System.Windows.Forms.ToolStripDropDownButton OperatorToolStripDropDownButton;
  390. private System.Windows.Forms.ToolStripDropDownButton FunctionToolStripDropDownButton;
  391. private System.Windows.Forms.TabControl tabControl1;
  392. private System.Windows.Forms.TabPage tabPage1;
  393. private System.Windows.Forms.TabPage tabPage2;
  394. private System.Windows.Forms.TabPage tabPage4;
  395. private System.Windows.Forms.TabPage tabPage3;
  396. private System.Windows.Forms.ToolStrip miniToolStrip;
  397. private CodeExecPanel DepCalcExecPanel;
  398. private CodeExecPanel DepFilterExecPanel;
  399. private CodeExecPanel CspCalcExecPanel;
  400. private CodeExecPanel CspFilterExecPanel;
  401. }
  402. }