TotalEditorForm.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class TotalEditorForm
  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.lblFunction = new System.Windows.Forms.Label();
  30. this.cbxFunction = new System.Windows.Forms.ComboBox();
  31. this.lblDataBand = new System.Windows.Forms.Label();
  32. this.cbxDataBand = new FastReport.Controls.BandComboBox();
  33. this.lblDataColumnOrExpression = new System.Windows.Forms.Label();
  34. this.gbTotal = new System.Windows.Forms.GroupBox();
  35. this.cbResetRepeated = new System.Windows.Forms.CheckBox();
  36. this.cbResetAfterPrint = new System.Windows.Forms.CheckBox();
  37. this.cbxPrintOn = new FastReport.Controls.BandComboBox();
  38. this.tbTotalName = new System.Windows.Forms.TextBox();
  39. this.lblEvaluateCondition = new System.Windows.Forms.Label();
  40. this.cbxDataColumn = new FastReport.Controls.DataColumnComboBox();
  41. this.lblPrintOn = new System.Windows.Forms.Label();
  42. this.lblTotalName = new System.Windows.Forms.Label();
  43. this.cbInvisibleRows = new System.Windows.Forms.CheckBox();
  44. this.tbEvaluateCondition = new FastReport.Controls.TextBoxButton();
  45. this.gbOptions = new System.Windows.Forms.GroupBox();
  46. this.gbTotal.SuspendLayout();
  47. this.gbOptions.SuspendLayout();
  48. this.SuspendLayout();
  49. //
  50. // btnOk
  51. //
  52. this.btnOk.Location = new System.Drawing.Point(200, 408);
  53. //
  54. // btnCancel
  55. //
  56. this.btnCancel.Location = new System.Drawing.Point(280, 408);
  57. //
  58. // lblFunction
  59. //
  60. this.lblFunction.AutoSize = true;
  61. this.lblFunction.Location = new System.Drawing.Point(12, 52);
  62. this.lblFunction.Name = "lblFunction";
  63. this.lblFunction.Size = new System.Drawing.Size(52, 13);
  64. this.lblFunction.TabIndex = 1;
  65. this.lblFunction.Text = "Function:";
  66. //
  67. // cbxFunction
  68. //
  69. this.cbxFunction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  70. this.cbxFunction.FormattingEnabled = true;
  71. this.cbxFunction.Location = new System.Drawing.Point(116, 48);
  72. this.cbxFunction.Name = "cbxFunction";
  73. this.cbxFunction.Size = new System.Drawing.Size(219, 21);
  74. this.cbxFunction.TabIndex = 2;
  75. this.cbxFunction.SelectedIndexChanged += new System.EventHandler(this.cbxFunction_SelectedIndexChanged);
  76. //
  77. // lblDataBand
  78. //
  79. this.lblDataBand.AutoSize = true;
  80. this.lblDataBand.Location = new System.Drawing.Point(12, 132);
  81. this.lblDataBand.Name = "lblDataBand";
  82. this.lblDataBand.Size = new System.Drawing.Size(174, 13);
  83. this.lblDataBand.TabIndex = 3;
  84. this.lblDataBand.Text = "Evaluate on each row of the band:";
  85. //
  86. // cbxDataBand
  87. //
  88. this.cbxDataBand.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  89. this.cbxDataBand.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  90. this.cbxDataBand.FormattingEnabled = true;
  91. this.cbxDataBand.ItemHeight = 15;
  92. this.cbxDataBand.Location = new System.Drawing.Point(12, 152);
  93. this.cbxDataBand.Name = "cbxDataBand";
  94. this.cbxDataBand.Size = new System.Drawing.Size(324, 21);
  95. this.cbxDataBand.TabIndex = 4;
  96. this.cbxDataBand.SelectedIndexChanged += new System.EventHandler(this.cbxDataBand_SelectedIndexChanged);
  97. //
  98. // lblDataColumnOrExpression
  99. //
  100. this.lblDataColumnOrExpression.AutoSize = true;
  101. this.lblDataColumnOrExpression.Location = new System.Drawing.Point(12, 80);
  102. this.lblDataColumnOrExpression.Name = "lblDataColumnOrExpression";
  103. this.lblDataColumnOrExpression.Size = new System.Drawing.Size(138, 13);
  104. this.lblDataColumnOrExpression.TabIndex = 5;
  105. this.lblDataColumnOrExpression.Text = "Data column or expression:";
  106. //
  107. // gbTotal
  108. //
  109. this.gbTotal.Controls.Add(this.cbxPrintOn);
  110. this.gbTotal.Controls.Add(this.tbTotalName);
  111. this.gbTotal.Controls.Add(this.lblEvaluateCondition);
  112. this.gbTotal.Controls.Add(this.cbxDataColumn);
  113. this.gbTotal.Controls.Add(this.lblPrintOn);
  114. this.gbTotal.Controls.Add(this.lblTotalName);
  115. this.gbTotal.Controls.Add(this.cbxDataBand);
  116. this.gbTotal.Controls.Add(this.lblDataBand);
  117. this.gbTotal.Controls.Add(this.tbEvaluateCondition);
  118. this.gbTotal.Controls.Add(this.cbxFunction);
  119. this.gbTotal.Controls.Add(this.lblDataColumnOrExpression);
  120. this.gbTotal.Controls.Add(this.lblFunction);
  121. this.gbTotal.Location = new System.Drawing.Point(8, 4);
  122. this.gbTotal.Name = "gbTotal";
  123. this.gbTotal.Size = new System.Drawing.Size(348, 292);
  124. this.gbTotal.TabIndex = 10;
  125. this.gbTotal.TabStop = false;
  126. this.gbTotal.Text = "Total";
  127. //
  128. // cbResetRepeated
  129. //
  130. this.cbResetRepeated.AutoSize = true;
  131. this.cbResetRepeated.Location = new System.Drawing.Point(12, 44);
  132. this.cbResetRepeated.Name = "cbResetRepeated";
  133. this.cbResetRepeated.Size = new System.Drawing.Size(147, 17);
  134. this.cbResetRepeated.TabIndex = 15;
  135. this.cbResetRepeated.Text = "Reset if band is repeated";
  136. this.cbResetRepeated.UseVisualStyleBackColor = true;
  137. //
  138. // cbResetAfterPrint
  139. //
  140. this.cbResetAfterPrint.AutoSize = true;
  141. this.cbResetAfterPrint.Location = new System.Drawing.Point(12, 20);
  142. this.cbResetAfterPrint.Name = "cbResetAfterPrint";
  143. this.cbResetAfterPrint.Size = new System.Drawing.Size(106, 17);
  144. this.cbResetAfterPrint.TabIndex = 14;
  145. this.cbResetAfterPrint.Text = "Reset after print";
  146. this.cbResetAfterPrint.UseVisualStyleBackColor = true;
  147. //
  148. // cbxPrintOn
  149. //
  150. this.cbxPrintOn.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  151. this.cbxPrintOn.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  152. this.cbxPrintOn.FormattingEnabled = true;
  153. this.cbxPrintOn.ItemHeight = 15;
  154. this.cbxPrintOn.Location = new System.Drawing.Point(12, 256);
  155. this.cbxPrintOn.Name = "cbxPrintOn";
  156. this.cbxPrintOn.Size = new System.Drawing.Size(324, 21);
  157. this.cbxPrintOn.TabIndex = 12;
  158. //
  159. // tbTotalName
  160. //
  161. this.tbTotalName.Location = new System.Drawing.Point(116, 20);
  162. this.tbTotalName.Name = "tbTotalName";
  163. this.tbTotalName.Size = new System.Drawing.Size(219, 20);
  164. this.tbTotalName.TabIndex = 12;
  165. //
  166. // lblEvaluateCondition
  167. //
  168. this.lblEvaluateCondition.AutoSize = true;
  169. this.lblEvaluateCondition.Location = new System.Drawing.Point(12, 184);
  170. this.lblEvaluateCondition.Name = "lblEvaluateCondition";
  171. this.lblEvaluateCondition.Size = new System.Drawing.Size(203, 13);
  172. this.lblEvaluateCondition.TabIndex = 11;
  173. this.lblEvaluateCondition.Text = "Evaluate if the following condition is met:";
  174. //
  175. // cbxDataColumn
  176. //
  177. this.cbxDataColumn.Location = new System.Drawing.Point(12, 100);
  178. this.cbxDataColumn.Name = "cbxDataColumn";
  179. this.cbxDataColumn.Size = new System.Drawing.Size(324, 21);
  180. this.cbxDataColumn.TabIndex = 13;
  181. //
  182. // lblPrintOn
  183. //
  184. this.lblPrintOn.AutoSize = true;
  185. this.lblPrintOn.Location = new System.Drawing.Point(12, 236);
  186. this.lblPrintOn.Name = "lblPrintOn";
  187. this.lblPrintOn.Size = new System.Drawing.Size(94, 13);
  188. this.lblPrintOn.TabIndex = 9;
  189. this.lblPrintOn.Text = "Print on the band:";
  190. //
  191. // lblTotalName
  192. //
  193. this.lblTotalName.AutoSize = true;
  194. this.lblTotalName.Location = new System.Drawing.Point(12, 24);
  195. this.lblTotalName.Name = "lblTotalName";
  196. this.lblTotalName.Size = new System.Drawing.Size(64, 13);
  197. this.lblTotalName.TabIndex = 11;
  198. this.lblTotalName.Text = "Total name:";
  199. //
  200. // cbInvisibleRows
  201. //
  202. this.cbInvisibleRows.AutoSize = true;
  203. this.cbInvisibleRows.Location = new System.Drawing.Point(12, 68);
  204. this.cbInvisibleRows.Name = "cbInvisibleRows";
  205. this.cbInvisibleRows.Size = new System.Drawing.Size(127, 17);
  206. this.cbInvisibleRows.TabIndex = 10;
  207. this.cbInvisibleRows.Text = "Include invisible rows";
  208. this.cbInvisibleRows.UseVisualStyleBackColor = true;
  209. //
  210. // tbEvaluateCondition
  211. //
  212. this.tbEvaluateCondition.Image = null;
  213. this.tbEvaluateCondition.Location = new System.Drawing.Point(12, 204);
  214. this.tbEvaluateCondition.Name = "tbEvaluateCondition";
  215. this.tbEvaluateCondition.Size = new System.Drawing.Size(324, 21);
  216. this.tbEvaluateCondition.TabIndex = 8;
  217. this.tbEvaluateCondition.ButtonClick += new System.EventHandler(this.tbEvaluateCondition_ButtonClick);
  218. //
  219. // gbOptions
  220. //
  221. this.gbOptions.Controls.Add(this.cbResetRepeated);
  222. this.gbOptions.Controls.Add(this.cbResetAfterPrint);
  223. this.gbOptions.Controls.Add(this.cbInvisibleRows);
  224. this.gbOptions.Location = new System.Drawing.Point(8, 300);
  225. this.gbOptions.Name = "gbOptions";
  226. this.gbOptions.Size = new System.Drawing.Size(348, 96);
  227. this.gbOptions.TabIndex = 11;
  228. this.gbOptions.TabStop = false;
  229. this.gbOptions.Text = "Options";
  230. //
  231. // TotalEditorForm
  232. //
  233. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  234. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  235. this.ClientSize = new System.Drawing.Size(364, 441);
  236. this.Controls.Add(this.gbOptions);
  237. this.Controls.Add(this.gbTotal);
  238. this.Name = "TotalEditorForm";
  239. this.ShowIcon = false;
  240. this.Text = "Edit Total";
  241. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.TotalEditorForm_FormClosed);
  242. this.Controls.SetChildIndex(this.btnOk, 0);
  243. this.Controls.SetChildIndex(this.btnCancel, 0);
  244. this.Controls.SetChildIndex(this.gbTotal, 0);
  245. this.Controls.SetChildIndex(this.gbOptions, 0);
  246. this.gbTotal.ResumeLayout(false);
  247. this.gbTotal.PerformLayout();
  248. this.gbOptions.ResumeLayout(false);
  249. this.gbOptions.PerformLayout();
  250. this.ResumeLayout(false);
  251. }
  252. #endregion
  253. private System.Windows.Forms.Label lblFunction;
  254. private System.Windows.Forms.ComboBox cbxFunction;
  255. private System.Windows.Forms.Label lblDataBand;
  256. private FastReport.Controls.BandComboBox cbxDataBand;
  257. private System.Windows.Forms.Label lblDataColumnOrExpression;
  258. private System.Windows.Forms.GroupBox gbTotal;
  259. private System.Windows.Forms.Label lblTotalName;
  260. private System.Windows.Forms.TextBox tbTotalName;
  261. private System.Windows.Forms.Label lblPrintOn;
  262. private FastReport.Controls.BandComboBox cbxPrintOn;
  263. private System.Windows.Forms.Label lblEvaluateCondition;
  264. private System.Windows.Forms.CheckBox cbInvisibleRows;
  265. private FastReport.Controls.TextBoxButton tbEvaluateCondition;
  266. private FastReport.Controls.DataColumnComboBox cbxDataColumn;
  267. private System.Windows.Forms.CheckBox cbResetAfterPrint;
  268. private System.Windows.Forms.CheckBox cbResetRepeated;
  269. private System.Windows.Forms.GroupBox gbOptions;
  270. }
  271. }