BaseExportForm.Designer.cs 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class BaseExportForm
  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.pcPages = new FastReport.Controls.PageControl();
  30. this.panPages = new FastReport.Controls.PageControlPage();
  31. this.gbPageRange = new System.Windows.Forms.GroupBox();
  32. this.lblHint = new System.Windows.Forms.Label();
  33. this.tbNumbers = new System.Windows.Forms.TextBox();
  34. this.rbNumbers = new System.Windows.Forms.RadioButton();
  35. this.rbCurrent = new System.Windows.Forms.RadioButton();
  36. this.rbAll = new System.Windows.Forms.RadioButton();
  37. this.cbOpenAfter = new System.Windows.Forms.CheckBox();
  38. this.cbExportAllTabs = new System.Windows.Forms.CheckBox();
  39. this.pcPages.SuspendLayout();
  40. this.panPages.SuspendLayout();
  41. this.gbPageRange.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // btnOk
  45. //
  46. this.btnOk.Location = new System.Drawing.Point(152, 232);
  47. //
  48. // btnCancel
  49. //
  50. this.btnCancel.Location = new System.Drawing.Point(232, 232);
  51. //
  52. // pcPages
  53. //
  54. this.pcPages.Controls.Add(this.panPages);
  55. this.pcPages.HighlightPageIndex = -1;
  56. this.pcPages.Location = new System.Drawing.Point(12, 16);
  57. this.pcPages.Name = "pcPages";
  58. this.pcPages.SelectorWidth = 0;
  59. this.pcPages.Size = new System.Drawing.Size(284, 148);
  60. this.pcPages.TabIndex = 1;
  61. this.pcPages.Text = "pageControl1";
  62. //
  63. // panPages
  64. //
  65. this.panPages.Controls.Add(this.gbPageRange);
  66. this.panPages.Dock = System.Windows.Forms.DockStyle.Fill;
  67. this.panPages.Location = new System.Drawing.Point(0, 0);
  68. this.panPages.Name = "panPages";
  69. this.panPages.Size = new System.Drawing.Size(284, 148);
  70. this.panPages.TabIndex = 0;
  71. //
  72. // gbPageRange
  73. //
  74. this.gbPageRange.Controls.Add(this.lblHint);
  75. this.gbPageRange.Controls.Add(this.tbNumbers);
  76. this.gbPageRange.Controls.Add(this.rbNumbers);
  77. this.gbPageRange.Controls.Add(this.rbCurrent);
  78. this.gbPageRange.Controls.Add(this.rbAll);
  79. this.gbPageRange.Location = new System.Drawing.Point(8, 8);
  80. this.gbPageRange.Name = "gbPageRange";
  81. this.gbPageRange.Padding = new System.Windows.Forms.Padding(2);
  82. this.gbPageRange.Size = new System.Drawing.Size(260, 128);
  83. this.gbPageRange.TabIndex = 3;
  84. this.gbPageRange.TabStop = false;
  85. this.gbPageRange.Text = "Page range";
  86. //
  87. // lblHint
  88. //
  89. this.lblHint.Dock = System.Windows.Forms.DockStyle.Bottom;
  90. this.lblHint.Location = new System.Drawing.Point(2, 83);
  91. this.lblHint.Name = "lblHint";
  92. this.lblHint.Padding = new System.Windows.Forms.Padding(5, 5, 5, 0);
  93. this.lblHint.Size = new System.Drawing.Size(256, 43);
  94. this.lblHint.TabIndex = 4;
  95. this.lblHint.Text = "Enter page numbers and/or page ranges, separated by commas. For example, 1,3,5-12" +
  96. "";
  97. //
  98. // tbNumbers
  99. //
  100. this.tbNumbers.Location = new System.Drawing.Point(104, 60);
  101. this.tbNumbers.Name = "tbNumbers";
  102. this.tbNumbers.Size = new System.Drawing.Size(144, 20);
  103. this.tbNumbers.TabIndex = 3;
  104. this.tbNumbers.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbNumbers_KeyPress);
  105. //
  106. // rbNumbers
  107. //
  108. this.rbNumbers.AutoSize = true;
  109. this.rbNumbers.Location = new System.Drawing.Point(12, 60);
  110. this.rbNumbers.Name = "rbNumbers";
  111. this.rbNumbers.Size = new System.Drawing.Size(71, 17);
  112. this.rbNumbers.TabIndex = 2;
  113. this.rbNumbers.TabStop = true;
  114. this.rbNumbers.Text = "Numbers:";
  115. this.rbNumbers.UseVisualStyleBackColor = true;
  116. //
  117. // rbCurrent
  118. //
  119. this.rbCurrent.AutoSize = true;
  120. this.rbCurrent.Location = new System.Drawing.Point(12, 40);
  121. this.rbCurrent.Name = "rbCurrent";
  122. this.rbCurrent.Size = new System.Drawing.Size(62, 17);
  123. this.rbCurrent.TabIndex = 1;
  124. this.rbCurrent.TabStop = true;
  125. this.rbCurrent.Text = "Current";
  126. this.rbCurrent.UseVisualStyleBackColor = true;
  127. this.rbCurrent.CheckedChanged += new System.EventHandler(this.rbCurrent_CheckedChanged);
  128. //
  129. // rbAll
  130. //
  131. this.rbAll.AutoSize = true;
  132. this.rbAll.Location = new System.Drawing.Point(12, 20);
  133. this.rbAll.Name = "rbAll";
  134. this.rbAll.Size = new System.Drawing.Size(36, 17);
  135. this.rbAll.TabIndex = 0;
  136. this.rbAll.TabStop = true;
  137. this.rbAll.Text = "All";
  138. this.rbAll.UseVisualStyleBackColor = true;
  139. this.rbAll.CheckedChanged += new System.EventHandler(this.rbCurrent_CheckedChanged);
  140. //
  141. // cbOpenAfter
  142. //
  143. this.cbOpenAfter.AutoSize = true;
  144. this.cbOpenAfter.Checked = true;
  145. this.cbOpenAfter.CheckState = System.Windows.Forms.CheckState.Checked;
  146. this.cbOpenAfter.Location = new System.Drawing.Point(12, 180);
  147. this.cbOpenAfter.Name = "cbOpenAfter";
  148. this.cbOpenAfter.Size = new System.Drawing.Size(114, 17);
  149. this.cbOpenAfter.TabIndex = 6;
  150. this.cbOpenAfter.Text = "Open after export";
  151. this.cbOpenAfter.UseVisualStyleBackColor = true;
  152. //
  153. // cbExportAllTabs
  154. //
  155. this.cbExportAllTabs.AutoSize = true;
  156. this.cbExportAllTabs.Checked = true;
  157. this.cbExportAllTabs.CheckState = System.Windows.Forms.CheckState.Checked;
  158. this.cbExportAllTabs.Location = new System.Drawing.Point(12, 204);
  159. this.cbExportAllTabs.Name = "cbExportAllTabs";
  160. this.cbExportAllTabs.Size = new System.Drawing.Size(114, 17);
  161. this.cbExportAllTabs.TabIndex = 5;
  162. this.cbExportAllTabs.Text = "Export all tabs";
  163. this.cbExportAllTabs.UseVisualStyleBackColor = true;
  164. //
  165. // BaseExportForm
  166. //
  167. this.ClientSize = new System.Drawing.Size(319, 266);
  168. this.Controls.Add(this.cbOpenAfter);
  169. this.Controls.Add(this.cbExportAllTabs);
  170. this.Controls.Add(this.pcPages);
  171. this.Name = "BaseExportForm";
  172. this.Text = "BaseExportForm";
  173. this.Controls.SetChildIndex(this.pcPages, 0);
  174. this.Controls.SetChildIndex(this.btnCancel, 0);
  175. this.Controls.SetChildIndex(this.btnOk, 0);
  176. this.Controls.SetChildIndex(this.cbOpenAfter, 0);
  177. this.Controls.SetChildIndex(this.cbExportAllTabs, 0);
  178. this.pcPages.ResumeLayout(false);
  179. this.panPages.ResumeLayout(false);
  180. this.gbPageRange.ResumeLayout(false);
  181. this.gbPageRange.PerformLayout();
  182. this.ResumeLayout(false);
  183. this.PerformLayout();
  184. }
  185. #endregion
  186. /// <summary>
  187. /// "Page Range" groupbox.
  188. /// </summary>
  189. protected System.Windows.Forms.GroupBox gbPageRange;
  190. /// <summary>
  191. /// "Page Numbers" label.
  192. /// </summary>
  193. protected System.Windows.Forms.Label lblHint;
  194. /// <summary>
  195. /// "Page Numbers" textbox.
  196. /// </summary>
  197. protected System.Windows.Forms.TextBox tbNumbers;
  198. /// <summary>
  199. /// "Page Numbers" radiobutton.
  200. /// </summary>
  201. protected System.Windows.Forms.RadioButton rbNumbers;
  202. /// <summary>
  203. /// "Current Page" radiobutton.
  204. /// </summary>
  205. protected System.Windows.Forms.RadioButton rbCurrent;
  206. /// <summary>
  207. /// "All Pages" radiobutton.
  208. /// </summary>
  209. protected System.Windows.Forms.RadioButton rbAll;
  210. /// <summary>
  211. /// PageControl.
  212. /// </summary>
  213. protected FastReport.Controls.PageControl pcPages;
  214. /// <summary>
  215. /// Pages panel.
  216. /// </summary>
  217. protected FastReport.Controls.PageControlPage panPages;
  218. /// <summary>
  219. /// "Open after export" checkbox.
  220. /// </summary>
  221. protected System.Windows.Forms.CheckBox cbOpenAfter;
  222. /// <summary>
  223. /// "Export all tabs" checkbox.
  224. /// </summary>
  225. protected System.Windows.Forms.CheckBox cbExportAllTabs;
  226. }
  227. }