DataBandEditorForm.Designer.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. using FastReport.Controls;
  2. using System.Drawing;
  3. namespace FastReport.Forms
  4. {
  5. partial class DataBandEditorForm
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.components = new System.ComponentModel.Container();
  31. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataBandEditorForm));
  32. this.tvDataSource = new FastReport.Controls.DataTreeView();
  33. this.lblNoData = new System.Windows.Forms.Label();
  34. this.cbxSort3 = new FastReport.Controls.DataColumnComboBox();
  35. this.lblSort3 = new FastReport.Controls.LabelLine();
  36. this.rbSortAsc3 = new System.Windows.Forms.RadioButton();
  37. this.rbSortDesc3 = new System.Windows.Forms.RadioButton();
  38. this.cbxSort2 = new FastReport.Controls.DataColumnComboBox();
  39. this.lblSort2 = new FastReport.Controls.LabelLine();
  40. this.rbSortAsc2 = new System.Windows.Forms.RadioButton();
  41. this.rbSortDesc2 = new System.Windows.Forms.RadioButton();
  42. this.cbxSort1 = new FastReport.Controls.DataColumnComboBox();
  43. this.lblSort1 = new FastReport.Controls.LabelLine();
  44. this.rbSortAsc1 = new System.Windows.Forms.RadioButton();
  45. this.rbSortDesc1 = new System.Windows.Forms.RadioButton();
  46. this.lblFilter = new System.Windows.Forms.Label();
  47. this.tbFilter = new FastReport.Controls.TextBoxButton();
  48. this.pageControl1 = new FastReport.Controls.PageControl();
  49. this.pnDataSource = new FastReport.Controls.PageControlPage();
  50. this.pnSort = new FastReport.Controls.PageControlPage();
  51. this.panel3 = new System.Windows.Forms.Panel();
  52. this.panel2 = new System.Windows.Forms.Panel();
  53. this.panel1 = new System.Windows.Forms.Panel();
  54. this.pnFilter = new FastReport.Controls.PageControlPage();
  55. this.pageControl1.SuspendLayout();
  56. this.pnDataSource.SuspendLayout();
  57. this.pnSort.SuspendLayout();
  58. this.panel3.SuspendLayout();
  59. this.panel2.SuspendLayout();
  60. this.panel1.SuspendLayout();
  61. this.pnFilter.SuspendLayout();
  62. this.SuspendLayout();
  63. //
  64. // btnOk
  65. //
  66. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  67. this.btnOk.Location = new System.Drawing.Point(368, 246);
  68. this.btnOk.TabIndex = 1;
  69. //
  70. // btnCancel
  71. //
  72. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  73. this.btnCancel.Location = new System.Drawing.Point(448, 246);
  74. this.btnCancel.TabIndex = 2;
  75. //
  76. // tvDataSource
  77. //
  78. this.tvDataSource.Dock = System.Windows.Forms.DockStyle.Fill;
  79. this.tvDataSource.HideSelection = false;
  80. this.tvDataSource.ImageIndex = 0;
  81. this.tvDataSource.Location = new System.Drawing.Point(3, 3);
  82. this.tvDataSource.Name = "tvDataSource";
  83. this.tvDataSource.SelectedImageIndex = 0;
  84. this.tvDataSource.ShowColumns = false;
  85. this.tvDataSource.ShowDataSources = true;
  86. this.tvDataSource.ShowEnabledOnly = true;
  87. this.tvDataSource.ShowNone = true;
  88. this.tvDataSource.ShowParameters = false;
  89. this.tvDataSource.ShowRelations = false;
  90. this.tvDataSource.ShowTotals = false;
  91. this.tvDataSource.ShowVariables = false;
  92. this.tvDataSource.Size = new System.Drawing.Size(368, 212);
  93. this.tvDataSource.TabIndex = 0;
  94. this.tvDataSource.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvDataSource_NodeMouseDoubleClick);
  95. this.tvDataSource.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvDataSource_AfterSelect);
  96. //
  97. // lblNoData
  98. //
  99. this.lblNoData.Dock = System.Windows.Forms.DockStyle.Fill;
  100. this.lblNoData.Location = new System.Drawing.Point(3, 3);
  101. this.lblNoData.Name = "lblNoData";
  102. this.lblNoData.Padding = new System.Windows.Forms.Padding(20);
  103. this.lblNoData.Size = new System.Drawing.Size(368, 212);
  104. this.lblNoData.TabIndex = 1;
  105. this.lblNoData.Text = "NoData";
  106. this.lblNoData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  107. //
  108. // cbxSort3
  109. //
  110. this.cbxSort3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  111. | System.Windows.Forms.AnchorStyles.Right)));
  112. this.cbxSort3.Location = new System.Drawing.Point(16, 34);
  113. this.cbxSort3.Name = "cbxSort3";
  114. this.cbxSort3.Size = new System.Drawing.Size(199, 21);
  115. this.cbxSort3.TabIndex = 0;
  116. //
  117. // lblSort3
  118. //
  119. this.lblSort3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  120. | System.Windows.Forms.AnchorStyles.Right)));
  121. this.lblSort3.ForeColor = System.Drawing.SystemColors.ControlText;
  122. this.lblSort3.Location = new System.Drawing.Point(16, 4);
  123. this.lblSort3.Name = "lblSort3";
  124. this.lblSort3.Size = new System.Drawing.Size(342, 16);
  125. this.lblSort3.TabIndex = 1;
  126. this.lblSort3.Text = "Then by";
  127. //
  128. // rbSortAsc3
  129. //
  130. this.rbSortAsc3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  131. this.rbSortAsc3.Location = new System.Drawing.Point(235, 27);
  132. this.rbSortAsc3.Name = "rbSortAsc3";
  133. this.rbSortAsc3.Size = new System.Drawing.Size(120, 17);
  134. this.rbSortAsc3.TabIndex = 2;
  135. this.rbSortAsc3.TabStop = true;
  136. this.rbSortAsc3.Text = "Ascending";
  137. this.rbSortAsc3.UseVisualStyleBackColor = true;
  138. //
  139. // rbSortDesc3
  140. //
  141. this.rbSortDesc3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  142. this.rbSortDesc3.Location = new System.Drawing.Point(235, 47);
  143. this.rbSortDesc3.Name = "rbSortDesc3";
  144. this.rbSortDesc3.Size = new System.Drawing.Size(120, 17);
  145. this.rbSortDesc3.TabIndex = 2;
  146. this.rbSortDesc3.TabStop = true;
  147. this.rbSortDesc3.Text = "Descending";
  148. this.rbSortDesc3.UseVisualStyleBackColor = true;
  149. //
  150. // cbxSort2
  151. //
  152. this.cbxSort2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  153. | System.Windows.Forms.AnchorStyles.Right)));
  154. this.cbxSort2.Location = new System.Drawing.Point(16, 32);
  155. this.cbxSort2.Name = "cbxSort2";
  156. this.cbxSort2.Size = new System.Drawing.Size(199, 21);
  157. this.cbxSort2.TabIndex = 0;
  158. //
  159. // lblSort2
  160. //
  161. this.lblSort2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  162. | System.Windows.Forms.AnchorStyles.Right)));
  163. this.lblSort2.ForeColor = System.Drawing.SystemColors.ControlText;
  164. this.lblSort2.Location = new System.Drawing.Point(16, 4);
  165. this.lblSort2.Name = "lblSort2";
  166. this.lblSort2.Size = new System.Drawing.Size(342, 16);
  167. this.lblSort2.TabIndex = 1;
  168. this.lblSort2.Text = "Then by";
  169. //
  170. // rbSortAsc2
  171. //
  172. this.rbSortAsc2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  173. this.rbSortAsc2.Location = new System.Drawing.Point(235, 24);
  174. this.rbSortAsc2.Name = "rbSortAsc2";
  175. this.rbSortAsc2.Size = new System.Drawing.Size(120, 17);
  176. this.rbSortAsc2.TabIndex = 2;
  177. this.rbSortAsc2.TabStop = true;
  178. this.rbSortAsc2.Text = "Ascending";
  179. this.rbSortAsc2.UseVisualStyleBackColor = true;
  180. //
  181. // rbSortDesc2
  182. //
  183. this.rbSortDesc2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  184. this.rbSortDesc2.Location = new System.Drawing.Point(235, 44);
  185. this.rbSortDesc2.Name = "rbSortDesc2";
  186. this.rbSortDesc2.Size = new System.Drawing.Size(120, 17);
  187. this.rbSortDesc2.TabIndex = 2;
  188. this.rbSortDesc2.TabStop = true;
  189. this.rbSortDesc2.Text = "Descending";
  190. this.rbSortDesc2.UseVisualStyleBackColor = true;
  191. //
  192. // cbxSort1
  193. //
  194. this.cbxSort1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  195. | System.Windows.Forms.AnchorStyles.Right)));
  196. this.cbxSort1.Location = new System.Drawing.Point(16, 44);
  197. this.cbxSort1.Name = "cbxSort1";
  198. this.cbxSort1.Size = new System.Drawing.Size(199, 21);
  199. this.cbxSort1.TabIndex = 0;
  200. //
  201. // lblSort1
  202. //
  203. this.lblSort1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  204. | System.Windows.Forms.AnchorStyles.Right)));
  205. this.lblSort1.ForeColor = System.Drawing.SystemColors.ControlText;
  206. this.lblSort1.Location = new System.Drawing.Point(16, 16);
  207. this.lblSort1.Name = "lblSort1";
  208. this.lblSort1.Size = new System.Drawing.Size(342, 16);
  209. this.lblSort1.TabIndex = 1;
  210. this.lblSort1.Text = "Sort by";
  211. //
  212. // rbSortAsc1
  213. //
  214. this.rbSortAsc1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  215. this.rbSortAsc1.Location = new System.Drawing.Point(235, 36);
  216. this.rbSortAsc1.Name = "rbSortAsc1";
  217. this.rbSortAsc1.Size = new System.Drawing.Size(120, 17);
  218. this.rbSortAsc1.TabIndex = 2;
  219. this.rbSortAsc1.TabStop = true;
  220. this.rbSortAsc1.Text = "Ascending";
  221. this.rbSortAsc1.UseVisualStyleBackColor = true;
  222. //
  223. // rbSortDesc1
  224. //
  225. this.rbSortDesc1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  226. this.rbSortDesc1.Location = new System.Drawing.Point(235, 56);
  227. this.rbSortDesc1.Name = "rbSortDesc1";
  228. this.rbSortDesc1.Size = new System.Drawing.Size(120, 17);
  229. this.rbSortDesc1.TabIndex = 2;
  230. this.rbSortDesc1.TabStop = true;
  231. this.rbSortDesc1.Text = "Descending";
  232. this.rbSortDesc1.UseVisualStyleBackColor = true;
  233. //
  234. // lblFilter
  235. //
  236. this.lblFilter.AutoSize = true;
  237. this.lblFilter.Location = new System.Drawing.Point(16, 16);
  238. this.lblFilter.Name = "lblFilter";
  239. this.lblFilter.Size = new System.Drawing.Size(90, 13);
  240. this.lblFilter.TabIndex = 1;
  241. this.lblFilter.Text = "Filter expression:";
  242. //
  243. // tbFilter
  244. //
  245. this.tbFilter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  246. | System.Windows.Forms.AnchorStyles.Right)));
  247. this.tbFilter.Image = null;
  248. this.tbFilter.Location = new System.Drawing.Point(16, 36);
  249. this.tbFilter.Name = "tbFilter";
  250. this.tbFilter.Size = new System.Drawing.Size(342, 21);
  251. this.tbFilter.TabIndex = 0;
  252. this.tbFilter.ButtonClick += new System.EventHandler(this.tbFilter_ButtonClick);
  253. //
  254. // pageControl1
  255. //
  256. this.pageControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  257. | System.Windows.Forms.AnchorStyles.Left)
  258. | System.Windows.Forms.AnchorStyles.Right)));
  259. this.pageControl1.Controls.Add(this.pnDataSource);
  260. this.pageControl1.Controls.Add(this.pnSort);
  261. this.pageControl1.Controls.Add(this.pnFilter);
  262. this.pageControl1.Location = new System.Drawing.Point(12, 12);
  263. this.pageControl1.Name = "pageControl1";
  264. this.pageControl1.SelectorWidth = 135;
  265. this.pageControl1.Size = new System.Drawing.Size(510, 220);
  266. this.pageControl1.TabIndex = 3;
  267. this.pageControl1.Text = "pageControl1";
  268. //
  269. // pnDataSource
  270. //
  271. this.pnDataSource.BackColor = System.Drawing.SystemColors.Window;
  272. this.pnDataSource.Controls.Add(this.tvDataSource);
  273. this.pnDataSource.Controls.Add(this.lblNoData);
  274. this.pnDataSource.Dock = System.Windows.Forms.DockStyle.Fill;
  275. this.pnDataSource.Location = new System.Drawing.Point(135, 1);
  276. this.pnDataSource.Name = "pnDataSource";
  277. this.pnDataSource.Padding = new System.Windows.Forms.Padding(3);
  278. this.pnDataSource.Size = new System.Drawing.Size(374, 218);
  279. this.pnDataSource.TabIndex = 0;
  280. this.pnDataSource.Text = "Data source";
  281. //
  282. // pnSort
  283. //
  284. this.pnSort.BackColor = System.Drawing.SystemColors.Window;
  285. this.pnSort.Controls.Add(this.panel3);
  286. this.pnSort.Controls.Add(this.panel2);
  287. this.pnSort.Controls.Add(this.panel1);
  288. this.pnSort.Dock = System.Windows.Forms.DockStyle.Fill;
  289. this.pnSort.Location = new System.Drawing.Point(135, 1);
  290. this.pnSort.Name = "pnSort";
  291. this.pnSort.Size = new System.Drawing.Size(374, 218);
  292. this.pnSort.TabIndex = 1;
  293. this.pnSort.Text = "Sort";
  294. //
  295. // panel3
  296. //
  297. this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  298. | System.Windows.Forms.AnchorStyles.Right)));
  299. this.panel3.Controls.Add(this.lblSort3);
  300. this.panel3.Controls.Add(this.cbxSort3);
  301. this.panel3.Controls.Add(this.rbSortAsc3);
  302. this.panel3.Controls.Add(this.rbSortDesc3);
  303. this.panel3.Location = new System.Drawing.Point(0, 140);
  304. this.panel3.Name = "panel3";
  305. this.panel3.Size = new System.Drawing.Size(374, 68);
  306. this.panel3.TabIndex = 5;
  307. //
  308. // panel2
  309. //
  310. this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  311. | System.Windows.Forms.AnchorStyles.Right)));
  312. this.panel2.Controls.Add(this.lblSort2);
  313. this.panel2.Controls.Add(this.cbxSort2);
  314. this.panel2.Controls.Add(this.rbSortAsc2);
  315. this.panel2.Controls.Add(this.rbSortDesc2);
  316. this.panel2.Location = new System.Drawing.Point(0, 76);
  317. this.panel2.Name = "panel2";
  318. this.panel2.Size = new System.Drawing.Size(374, 64);
  319. this.panel2.TabIndex = 4;
  320. //
  321. // panel1
  322. //
  323. this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  324. | System.Windows.Forms.AnchorStyles.Right)));
  325. this.panel1.Controls.Add(this.lblSort1);
  326. this.panel1.Controls.Add(this.cbxSort1);
  327. this.panel1.Controls.Add(this.rbSortAsc1);
  328. this.panel1.Controls.Add(this.rbSortDesc1);
  329. this.panel1.Location = new System.Drawing.Point(0, 0);
  330. this.panel1.Name = "panel1";
  331. this.panel1.Size = new System.Drawing.Size(374, 76);
  332. this.panel1.TabIndex = 3;
  333. //
  334. // pnFilter
  335. //
  336. this.pnFilter.BackColor = System.Drawing.SystemColors.Window;
  337. this.pnFilter.Controls.Add(this.tbFilter);
  338. this.pnFilter.Controls.Add(this.lblFilter);
  339. this.pnFilter.Dock = System.Windows.Forms.DockStyle.Fill;
  340. this.pnFilter.Location = new System.Drawing.Point(135, 1);
  341. this.pnFilter.Name = "pnFilter";
  342. this.pnFilter.Size = new System.Drawing.Size(374, 218);
  343. this.pnFilter.TabIndex = 2;
  344. this.pnFilter.Text = "Filter";
  345. //
  346. // DataBandEditorForm
  347. //
  348. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  349. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  350. this.ClientSize = new System.Drawing.Size(532, 278);
  351. this.Controls.Add(this.pageControl1);
  352. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  353. this.Name = "DataBandEditorForm";
  354. this.ShowIcon = false;
  355. this.Text = "Edit DataBand";
  356. this.Shown += new System.EventHandler(this.DataBandEditorForm_Shown);
  357. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.DataBandEditorForm_FormClosed);
  358. this.Controls.SetChildIndex(this.btnOk, 0);
  359. this.Controls.SetChildIndex(this.btnCancel, 0);
  360. this.Controls.SetChildIndex(this.pageControl1, 0);
  361. this.pageControl1.ResumeLayout(false);
  362. this.pnDataSource.ResumeLayout(false);
  363. this.pnSort.ResumeLayout(false);
  364. this.panel3.ResumeLayout(false);
  365. this.panel2.ResumeLayout(false);
  366. this.panel1.ResumeLayout(false);
  367. this.pnFilter.ResumeLayout(false);
  368. this.pnFilter.PerformLayout();
  369. this.ResumeLayout(false);
  370. }
  371. #endregion
  372. private FastReport.Controls.DataTreeView tvDataSource;
  373. private System.Windows.Forms.Label lblFilter;
  374. private FastReport.Controls.TextBoxButton tbFilter;
  375. private System.Windows.Forms.Label lblNoData;
  376. private FastReport.Controls.DataColumnComboBox cbxSort1;
  377. private System.Windows.Forms.RadioButton rbSortDesc3;
  378. private System.Windows.Forms.RadioButton rbSortDesc2;
  379. private System.Windows.Forms.RadioButton rbSortDesc1;
  380. private System.Windows.Forms.RadioButton rbSortAsc3;
  381. private System.Windows.Forms.RadioButton rbSortAsc2;
  382. private System.Windows.Forms.RadioButton rbSortAsc1;
  383. private FastReport.Controls.LabelLine lblSort3;
  384. private FastReport.Controls.LabelLine lblSort2;
  385. private FastReport.Controls.LabelLine lblSort1;
  386. private FastReport.Controls.DataColumnComboBox cbxSort3;
  387. private FastReport.Controls.DataColumnComboBox cbxSort2;
  388. private FastReport.Controls.PageControl pageControl1;
  389. private FastReport.Controls.PageControlPage pnDataSource;
  390. private FastReport.Controls.PageControlPage pnSort;
  391. private FastReport.Controls.PageControlPage pnFilter;
  392. private System.Windows.Forms.Panel panel3;
  393. private System.Windows.Forms.Panel panel2;
  394. private System.Windows.Forms.Panel panel1;
  395. }
  396. }