BaseReportWizardForm.Designer.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. namespace FastReport.Forms
  2. {
  3. partial class BaseReportWizardForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BaseReportWizardForm));
  30. this.panDataSource = new System.Windows.Forms.Panel();
  31. this.btnOpenDataDictionary = new System.Windows.Forms.Button();
  32. this.btnCreateNewDatasource = new System.Windows.Forms.Button();
  33. this.lblSelectDataSource = new System.Windows.Forms.Label();
  34. this.tvDataSources = new FastReport.Controls.DataTreeView();
  35. this.panColumns = new System.Windows.Forms.Panel();
  36. this.btnColumnDown = new System.Windows.Forms.Button();
  37. this.btnColumnUp = new System.Windows.Forms.Button();
  38. this.btnRemoveAllColumns = new System.Windows.Forms.Button();
  39. this.btnRemoveColumn = new System.Windows.Forms.Button();
  40. this.btnAddAllColumns = new System.Windows.Forms.Button();
  41. this.btnAddColumn = new System.Windows.Forms.Button();
  42. this.lblSelectedColumns = new System.Windows.Forms.Label();
  43. this.lblAvailableColumns = new System.Windows.Forms.Label();
  44. this.lvSelectedColumns = new System.Windows.Forms.ListView();
  45. this.lvAvailableColumns = new System.Windows.Forms.ListView();
  46. this.lblSelectColumns = new System.Windows.Forms.Label();
  47. this.pnTop.SuspendLayout();
  48. ((System.ComponentModel.ISupportInitialize)(this.picIcon)).BeginInit();
  49. this.pnBottom.SuspendLayout();
  50. this.pcPages.SuspendLayout();
  51. this.panDataSource.SuspendLayout();
  52. this.panColumns.SuspendLayout();
  53. this.SuspendLayout();
  54. //
  55. // pnTop
  56. //
  57. this.pnTop.Size = new System.Drawing.Size(447, 68);
  58. //
  59. // lblCaption
  60. //
  61. this.lblCaption.Size = new System.Drawing.Size(0, 17);
  62. this.lblCaption.Text = "";
  63. //
  64. // picIcon
  65. //
  66. this.picIcon.Location = new System.Drawing.Point(386, 8);
  67. //
  68. // pnBottom
  69. //
  70. this.pnBottom.Location = new System.Drawing.Point(0, 370);
  71. this.pnBottom.Size = new System.Drawing.Size(447, 45);
  72. //
  73. // btnCancel1
  74. //
  75. this.btnCancel1.Location = new System.Drawing.Point(360, 10);
  76. //
  77. // btnFinish
  78. //
  79. this.btnFinish.Location = new System.Drawing.Point(276, 10);
  80. //
  81. // btnNext
  82. //
  83. this.btnNext.Location = new System.Drawing.Point(192, 10);
  84. //
  85. // btnPrevious
  86. //
  87. this.btnPrevious.Location = new System.Drawing.Point(108, 10);
  88. //
  89. // pcPages
  90. //
  91. this.pcPages.Controls.Add(this.panDataSource);
  92. this.pcPages.Controls.Add(this.panColumns);
  93. this.pcPages.Size = new System.Drawing.Size(447, 302);
  94. //
  95. // panDataSource
  96. //
  97. this.panDataSource.Controls.Add(this.btnOpenDataDictionary);
  98. this.panDataSource.Controls.Add(this.btnCreateNewDatasource);
  99. this.panDataSource.Controls.Add(this.lblSelectDataSource);
  100. this.panDataSource.Controls.Add(this.tvDataSources);
  101. this.panDataSource.Dock = System.Windows.Forms.DockStyle.Fill;
  102. this.panDataSource.Location = new System.Drawing.Point(0, 0);
  103. this.panDataSource.Name = "panDataSource";
  104. this.panDataSource.Size = new System.Drawing.Size(447, 302);
  105. this.panDataSource.TabIndex = 0;
  106. //
  107. // btnOpenDataDictionary
  108. //
  109. this.btnOpenDataDictionary.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  110. this.btnOpenDataDictionary.AutoSize = true;
  111. this.btnOpenDataDictionary.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  112. this.btnOpenDataDictionary.Location = new System.Drawing.Point(12, 265);
  113. this.btnOpenDataDictionary.Name = "btnOpenDataDictionary";
  114. this.btnOpenDataDictionary.Size = new System.Drawing.Size(147, 23);
  115. this.btnOpenDataDictionary.TabIndex = 6;
  116. this.btnOpenDataDictionary.Text = "Open data dictionary file...";
  117. this.btnOpenDataDictionary.UseVisualStyleBackColor = true;
  118. this.btnOpenDataDictionary.Click += new System.EventHandler(this.btnOpenDataDictionary_Click);
  119. //
  120. // btnCreateNewDatasource
  121. //
  122. this.btnCreateNewDatasource.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  123. this.btnCreateNewDatasource.AutoSize = true;
  124. this.btnCreateNewDatasource.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  125. this.btnCreateNewDatasource.Location = new System.Drawing.Point(293, 265);
  126. this.btnCreateNewDatasource.Name = "btnCreateNewDatasource";
  127. this.btnCreateNewDatasource.Size = new System.Drawing.Size(142, 23);
  128. this.btnCreateNewDatasource.TabIndex = 5;
  129. this.btnCreateNewDatasource.Text = "Create new datasource...";
  130. this.btnCreateNewDatasource.UseVisualStyleBackColor = true;
  131. this.btnCreateNewDatasource.Click += new System.EventHandler(this.btnCreateNewDatasource_Click);
  132. //
  133. // lblSelectDataSource
  134. //
  135. this.lblSelectDataSource.AutoSize = true;
  136. this.lblSelectDataSource.Location = new System.Drawing.Point(12, 12);
  137. this.lblSelectDataSource.Name = "lblSelectDataSource";
  138. this.lblSelectDataSource.Size = new System.Drawing.Size(291, 13);
  139. this.lblSelectDataSource.TabIndex = 4;
  140. this.lblSelectDataSource.Text = "Select one of the available datasources or create new one:";
  141. //
  142. // tvDataSources
  143. //
  144. this.tvDataSources.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  145. | System.Windows.Forms.AnchorStyles.Left)
  146. | System.Windows.Forms.AnchorStyles.Right)));
  147. this.tvDataSources.HideSelection = false;
  148. this.tvDataSources.ImageIndex = 0;
  149. this.tvDataSources.Location = new System.Drawing.Point(12, 36);
  150. this.tvDataSources.Name = "tvDataSources";
  151. this.tvDataSources.SelectedImageIndex = 0;
  152. this.tvDataSources.ShowColumns = false;
  153. this.tvDataSources.ShowCubeSources = false;
  154. this.tvDataSources.ShowDataSources = true;
  155. this.tvDataSources.ShowCustomItems = false;
  156. this.tvDataSources.ShowEnabledOnly = true;
  157. this.tvDataSources.ShowFunctions = false;
  158. this.tvDataSources.ShowNone = false;
  159. this.tvDataSources.ShowParameters = false;
  160. this.tvDataSources.ShowRelations = false;
  161. this.tvDataSources.ShowTotals = false;
  162. this.tvDataSources.ShowVariables = false;
  163. this.tvDataSources.Size = new System.Drawing.Size(422, 217);
  164. this.tvDataSources.TabIndex = 3;
  165. this.tvDataSources.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvDataSources_AfterSelect);
  166. //
  167. // panColumns
  168. //
  169. this.panColumns.Controls.Add(this.btnColumnDown);
  170. this.panColumns.Controls.Add(this.btnColumnUp);
  171. this.panColumns.Controls.Add(this.btnRemoveAllColumns);
  172. this.panColumns.Controls.Add(this.btnRemoveColumn);
  173. this.panColumns.Controls.Add(this.btnAddAllColumns);
  174. this.panColumns.Controls.Add(this.btnAddColumn);
  175. this.panColumns.Controls.Add(this.lblSelectedColumns);
  176. this.panColumns.Controls.Add(this.lblAvailableColumns);
  177. this.panColumns.Controls.Add(this.lvSelectedColumns);
  178. this.panColumns.Controls.Add(this.lvAvailableColumns);
  179. this.panColumns.Controls.Add(this.lblSelectColumns);
  180. this.panColumns.Dock = System.Windows.Forms.DockStyle.Fill;
  181. this.panColumns.Location = new System.Drawing.Point(0, 0);
  182. this.panColumns.Name = "panColumns";
  183. this.panColumns.Size = new System.Drawing.Size(447, 302);
  184. this.panColumns.TabIndex = 1;
  185. //
  186. // btnColumnDown
  187. //
  188. this.btnColumnDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  189. this.btnColumnDown.Location = new System.Drawing.Point(198, 252);
  190. this.btnColumnDown.Name = "btnColumnDown";
  191. this.btnColumnDown.Size = new System.Drawing.Size(32, 24);
  192. this.btnColumnDown.TabIndex = 4;
  193. this.btnColumnDown.UseVisualStyleBackColor = true;
  194. this.btnColumnDown.Click += new System.EventHandler(this.btnColumnDown_Click);
  195. //
  196. // btnColumnUp
  197. //
  198. this.btnColumnUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  199. this.btnColumnUp.Location = new System.Drawing.Point(198, 228);
  200. this.btnColumnUp.Name = "btnColumnUp";
  201. this.btnColumnUp.Size = new System.Drawing.Size(32, 24);
  202. this.btnColumnUp.TabIndex = 4;
  203. this.btnColumnUp.UseVisualStyleBackColor = true;
  204. this.btnColumnUp.Click += new System.EventHandler(this.btnColumnUp_Click);
  205. //
  206. // btnRemoveAllColumns
  207. //
  208. this.btnRemoveAllColumns.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  209. this.btnRemoveAllColumns.Location = new System.Drawing.Point(198, 160);
  210. this.btnRemoveAllColumns.Name = "btnRemoveAllColumns";
  211. this.btnRemoveAllColumns.Size = new System.Drawing.Size(32, 24);
  212. this.btnRemoveAllColumns.TabIndex = 4;
  213. this.btnRemoveAllColumns.Text = "<<";
  214. this.btnRemoveAllColumns.UseVisualStyleBackColor = true;
  215. this.btnRemoveAllColumns.Click += new System.EventHandler(this.btnRemoveAllColumns_Click);
  216. //
  217. // btnRemoveColumn
  218. //
  219. this.btnRemoveColumn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  220. this.btnRemoveColumn.Location = new System.Drawing.Point(198, 136);
  221. this.btnRemoveColumn.Name = "btnRemoveColumn";
  222. this.btnRemoveColumn.Size = new System.Drawing.Size(32, 24);
  223. this.btnRemoveColumn.TabIndex = 4;
  224. this.btnRemoveColumn.Text = "<";
  225. this.btnRemoveColumn.UseVisualStyleBackColor = true;
  226. this.btnRemoveColumn.Click += new System.EventHandler(this.btnRemoveColumn_Click);
  227. //
  228. // btnAddAllColumns
  229. //
  230. this.btnAddAllColumns.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  231. this.btnAddAllColumns.Location = new System.Drawing.Point(198, 88);
  232. this.btnAddAllColumns.Name = "btnAddAllColumns";
  233. this.btnAddAllColumns.Size = new System.Drawing.Size(32, 24);
  234. this.btnAddAllColumns.TabIndex = 4;
  235. this.btnAddAllColumns.Text = ">>";
  236. this.btnAddAllColumns.UseVisualStyleBackColor = true;
  237. this.btnAddAllColumns.Click += new System.EventHandler(this.btnAddAllColumns_Click);
  238. //
  239. // btnAddColumn
  240. //
  241. this.btnAddColumn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  242. this.btnAddColumn.Location = new System.Drawing.Point(198, 64);
  243. this.btnAddColumn.Name = "btnAddColumn";
  244. this.btnAddColumn.Size = new System.Drawing.Size(32, 24);
  245. this.btnAddColumn.TabIndex = 4;
  246. this.btnAddColumn.Text = ">";
  247. this.btnAddColumn.UseVisualStyleBackColor = true;
  248. this.btnAddColumn.Click += new System.EventHandler(this.btnAddColumn_Click);
  249. //
  250. // lblSelectedColumns
  251. //
  252. this.lblSelectedColumns.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  253. this.lblSelectedColumns.AutoSize = true;
  254. this.lblSelectedColumns.Location = new System.Drawing.Point(242, 44);
  255. this.lblSelectedColumns.Name = "lblSelectedColumns";
  256. this.lblSelectedColumns.Size = new System.Drawing.Size(93, 13);
  257. this.lblSelectedColumns.TabIndex = 3;
  258. this.lblSelectedColumns.Text = "Selected columns:";
  259. //
  260. // lblAvailableColumns
  261. //
  262. this.lblAvailableColumns.AutoSize = true;
  263. this.lblAvailableColumns.Location = new System.Drawing.Point(12, 44);
  264. this.lblAvailableColumns.Name = "lblAvailableColumns";
  265. this.lblAvailableColumns.Size = new System.Drawing.Size(95, 13);
  266. this.lblAvailableColumns.TabIndex = 3;
  267. this.lblAvailableColumns.Text = "Available columns:";
  268. //
  269. // lvSelectedColumns
  270. //
  271. this.lvSelectedColumns.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  272. | System.Windows.Forms.AnchorStyles.Right)));
  273. this.lvSelectedColumns.HideSelection = false;
  274. this.lvSelectedColumns.Location = new System.Drawing.Point(242, 64);
  275. this.lvSelectedColumns.Name = "lvSelectedColumns";
  276. this.lvSelectedColumns.Size = new System.Drawing.Size(192, 225);
  277. this.lvSelectedColumns.TabIndex = 2;
  278. this.lvSelectedColumns.UseCompatibleStateImageBehavior = false;
  279. this.lvSelectedColumns.View = System.Windows.Forms.View.List;
  280. this.lvSelectedColumns.SelectedIndexChanged += new System.EventHandler(this.lvSelectedColumns_SelectedIndexChanged);
  281. //
  282. // lvAvailableColumns
  283. //
  284. this.lvAvailableColumns.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  285. | System.Windows.Forms.AnchorStyles.Left)
  286. | System.Windows.Forms.AnchorStyles.Right)));
  287. this.lvAvailableColumns.HideSelection = false;
  288. this.lvAvailableColumns.Location = new System.Drawing.Point(12, 64);
  289. this.lvAvailableColumns.Name = "lvAvailableColumns";
  290. this.lvAvailableColumns.Size = new System.Drawing.Size(174, 225);
  291. this.lvAvailableColumns.TabIndex = 2;
  292. this.lvAvailableColumns.UseCompatibleStateImageBehavior = false;
  293. this.lvAvailableColumns.View = System.Windows.Forms.View.List;
  294. this.lvAvailableColumns.SelectedIndexChanged += new System.EventHandler(this.lvAvailableColumns_SelectedIndexChanged);
  295. //
  296. // lblSelectColumns
  297. //
  298. this.lblSelectColumns.AutoSize = true;
  299. this.lblSelectColumns.Location = new System.Drawing.Point(12, 12);
  300. this.lblSelectColumns.Name = "lblSelectColumns";
  301. this.lblSelectColumns.Size = new System.Drawing.Size(271, 13);
  302. this.lblSelectColumns.TabIndex = 1;
  303. this.lblSelectColumns.Text = "Select data columns that you want to show in a report.";
  304. //
  305. // BaseReportWizardForm
  306. //
  307. this.ClientSize = new System.Drawing.Size(447, 415);
  308. this.Name = "BaseReportWizardForm";
  309. this.Text = "Standard Report Wizard";
  310. this.pnTop.ResumeLayout(false);
  311. this.pnTop.PerformLayout();
  312. ((System.ComponentModel.ISupportInitialize)(this.picIcon)).EndInit();
  313. this.pnBottom.ResumeLayout(false);
  314. this.pcPages.ResumeLayout(false);
  315. this.panDataSource.ResumeLayout(false);
  316. this.panDataSource.PerformLayout();
  317. this.panColumns.ResumeLayout(false);
  318. this.panColumns.PerformLayout();
  319. this.ResumeLayout(false);
  320. }
  321. #endregion
  322. private System.Windows.Forms.Panel panDataSource;
  323. private System.Windows.Forms.Button btnCreateNewDatasource;
  324. private System.Windows.Forms.Label lblSelectDataSource;
  325. private FastReport.Controls.DataTreeView tvDataSources;
  326. private System.Windows.Forms.Panel panColumns;
  327. private System.Windows.Forms.ListView lvAvailableColumns;
  328. private System.Windows.Forms.Label lblSelectColumns;
  329. private System.Windows.Forms.Button btnRemoveAllColumns;
  330. private System.Windows.Forms.Button btnRemoveColumn;
  331. private System.Windows.Forms.Button btnAddAllColumns;
  332. private System.Windows.Forms.Button btnAddColumn;
  333. private System.Windows.Forms.Label lblSelectedColumns;
  334. private System.Windows.Forms.Label lblAvailableColumns;
  335. private System.Windows.Forms.ListView lvSelectedColumns;
  336. private System.Windows.Forms.Button btnColumnDown;
  337. private System.Windows.Forms.Button btnColumnUp;
  338. private System.Windows.Forms.Button btnOpenDataDictionary;
  339. }
  340. }