PreviewPageSetupForm.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class PreviewPageSetupForm
  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.gbPaper = new System.Windows.Forms.GroupBox();
  30. this.tbHeight = new System.Windows.Forms.TextBox();
  31. this.tbWidth = new System.Windows.Forms.TextBox();
  32. this.lblHeight = new System.Windows.Forms.Label();
  33. this.lblWidth = new System.Windows.Forms.Label();
  34. this.cbxPaper = new System.Windows.Forms.ComboBox();
  35. this.gbOrientation = new System.Windows.Forms.GroupBox();
  36. this.pnOrientation = new System.Windows.Forms.Panel();
  37. this.rbLandscape = new System.Windows.Forms.RadioButton();
  38. this.rbPortrait = new System.Windows.Forms.RadioButton();
  39. this.gbMargins = new System.Windows.Forms.GroupBox();
  40. this.tbBottom = new System.Windows.Forms.TextBox();
  41. this.lblBottom = new System.Windows.Forms.Label();
  42. this.tbRight = new System.Windows.Forms.TextBox();
  43. this.lblRight = new System.Windows.Forms.Label();
  44. this.tbTop = new System.Windows.Forms.TextBox();
  45. this.lblTop = new System.Windows.Forms.Label();
  46. this.tbLeft = new System.Windows.Forms.TextBox();
  47. this.lblLeft = new System.Windows.Forms.Label();
  48. this.cbApply = new System.Windows.Forms.CheckBox();
  49. this.gbPaper.SuspendLayout();
  50. this.gbOrientation.SuspendLayout();
  51. this.gbMargins.SuspendLayout();
  52. this.SuspendLayout();
  53. //
  54. // btnOk
  55. //
  56. this.btnOk.Location = new System.Drawing.Point(156, 300);
  57. //
  58. // btnCancel
  59. //
  60. this.btnCancel.Location = new System.Drawing.Point(236, 300);
  61. //
  62. // gbPaper
  63. //
  64. this.gbPaper.Controls.Add(this.tbHeight);
  65. this.gbPaper.Controls.Add(this.tbWidth);
  66. this.gbPaper.Controls.Add(this.lblHeight);
  67. this.gbPaper.Controls.Add(this.lblWidth);
  68. this.gbPaper.Controls.Add(this.cbxPaper);
  69. this.gbPaper.Location = new System.Drawing.Point(8, 4);
  70. this.gbPaper.Name = "gbPaper";
  71. this.gbPaper.Size = new System.Drawing.Size(304, 104);
  72. this.gbPaper.TabIndex = 7;
  73. this.gbPaper.TabStop = false;
  74. this.gbPaper.Text = "Paper";
  75. //
  76. // tbHeight
  77. //
  78. this.tbHeight.Location = new System.Drawing.Point(80, 72);
  79. this.tbHeight.Name = "tbHeight";
  80. this.tbHeight.Size = new System.Drawing.Size(60, 20);
  81. this.tbHeight.TabIndex = 4;
  82. this.tbHeight.TextChanged += new System.EventHandler(this.tbWidth_TextChanged);
  83. //
  84. // tbWidth
  85. //
  86. this.tbWidth.Location = new System.Drawing.Point(80, 48);
  87. this.tbWidth.Name = "tbWidth";
  88. this.tbWidth.Size = new System.Drawing.Size(60, 20);
  89. this.tbWidth.TabIndex = 3;
  90. this.tbWidth.TextChanged += new System.EventHandler(this.tbWidth_TextChanged);
  91. //
  92. // lblHeight
  93. //
  94. this.lblHeight.AutoSize = true;
  95. this.lblHeight.Location = new System.Drawing.Point(8, 76);
  96. this.lblHeight.Name = "lblHeight";
  97. this.lblHeight.Size = new System.Drawing.Size(38, 13);
  98. this.lblHeight.TabIndex = 2;
  99. this.lblHeight.Text = "Height";
  100. //
  101. // lblWidth
  102. //
  103. this.lblWidth.AutoSize = true;
  104. this.lblWidth.Location = new System.Drawing.Point(8, 52);
  105. this.lblWidth.Name = "lblWidth";
  106. this.lblWidth.Size = new System.Drawing.Size(35, 13);
  107. this.lblWidth.TabIndex = 1;
  108. this.lblWidth.Text = "Width";
  109. //
  110. // cbxPaper
  111. //
  112. this.cbxPaper.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  113. this.cbxPaper.FormattingEnabled = true;
  114. this.cbxPaper.Location = new System.Drawing.Point(12, 20);
  115. this.cbxPaper.Name = "cbxPaper";
  116. this.cbxPaper.Size = new System.Drawing.Size(280, 21);
  117. this.cbxPaper.TabIndex = 0;
  118. this.cbxPaper.SelectedIndexChanged += new System.EventHandler(this.cbxPaper_SelectedIndexChanged);
  119. //
  120. // gbOrientation
  121. //
  122. this.gbOrientation.Controls.Add(this.pnOrientation);
  123. this.gbOrientation.Controls.Add(this.rbLandscape);
  124. this.gbOrientation.Controls.Add(this.rbPortrait);
  125. this.gbOrientation.Location = new System.Drawing.Point(8, 112);
  126. this.gbOrientation.Name = "gbOrientation";
  127. this.gbOrientation.Size = new System.Drawing.Size(304, 72);
  128. this.gbOrientation.TabIndex = 8;
  129. this.gbOrientation.TabStop = false;
  130. this.gbOrientation.Text = "Orientation";
  131. //
  132. // pnOrientation
  133. //
  134. this.pnOrientation.Location = new System.Drawing.Point(232, 16);
  135. this.pnOrientation.Name = "pnOrientation";
  136. this.pnOrientation.Size = new System.Drawing.Size(48, 48);
  137. this.pnOrientation.TabIndex = 1;
  138. this.pnOrientation.Paint += new System.Windows.Forms.PaintEventHandler(this.pnOrientation_Paint);
  139. //
  140. // rbLandscape
  141. //
  142. this.rbLandscape.AutoSize = true;
  143. this.rbLandscape.Location = new System.Drawing.Point(12, 44);
  144. this.rbLandscape.Name = "rbLandscape";
  145. this.rbLandscape.Size = new System.Drawing.Size(76, 17);
  146. this.rbLandscape.TabIndex = 0;
  147. this.rbLandscape.TabStop = true;
  148. this.rbLandscape.Text = "Landscape";
  149. this.rbLandscape.UseVisualStyleBackColor = true;
  150. this.rbLandscape.CheckedChanged += new System.EventHandler(this.rbPortrait_CheckedChanged);
  151. //
  152. // rbPortrait
  153. //
  154. this.rbPortrait.AutoSize = true;
  155. this.rbPortrait.Location = new System.Drawing.Point(12, 20);
  156. this.rbPortrait.Name = "rbPortrait";
  157. this.rbPortrait.Size = new System.Drawing.Size(61, 17);
  158. this.rbPortrait.TabIndex = 0;
  159. this.rbPortrait.TabStop = true;
  160. this.rbPortrait.Text = "Portrait";
  161. this.rbPortrait.UseVisualStyleBackColor = true;
  162. this.rbPortrait.CheckedChanged += new System.EventHandler(this.rbPortrait_CheckedChanged);
  163. //
  164. // gbMargins
  165. //
  166. this.gbMargins.Controls.Add(this.tbBottom);
  167. this.gbMargins.Controls.Add(this.lblBottom);
  168. this.gbMargins.Controls.Add(this.tbRight);
  169. this.gbMargins.Controls.Add(this.lblRight);
  170. this.gbMargins.Controls.Add(this.tbTop);
  171. this.gbMargins.Controls.Add(this.lblTop);
  172. this.gbMargins.Controls.Add(this.tbLeft);
  173. this.gbMargins.Controls.Add(this.lblLeft);
  174. this.gbMargins.Location = new System.Drawing.Point(8, 188);
  175. this.gbMargins.Name = "gbMargins";
  176. this.gbMargins.Size = new System.Drawing.Size(304, 76);
  177. this.gbMargins.TabIndex = 9;
  178. this.gbMargins.TabStop = false;
  179. this.gbMargins.Text = "Margins";
  180. //
  181. // tbBottom
  182. //
  183. this.tbBottom.Location = new System.Drawing.Point(232, 44);
  184. this.tbBottom.Name = "tbBottom";
  185. this.tbBottom.Size = new System.Drawing.Size(60, 20);
  186. this.tbBottom.TabIndex = 7;
  187. //
  188. // lblBottom
  189. //
  190. this.lblBottom.AutoSize = true;
  191. this.lblBottom.Location = new System.Drawing.Point(160, 48);
  192. this.lblBottom.Name = "lblBottom";
  193. this.lblBottom.Size = new System.Drawing.Size(41, 13);
  194. this.lblBottom.TabIndex = 6;
  195. this.lblBottom.Text = "Bottom";
  196. //
  197. // tbRight
  198. //
  199. this.tbRight.Location = new System.Drawing.Point(232, 20);
  200. this.tbRight.Name = "tbRight";
  201. this.tbRight.Size = new System.Drawing.Size(60, 20);
  202. this.tbRight.TabIndex = 5;
  203. //
  204. // lblRight
  205. //
  206. this.lblRight.AutoSize = true;
  207. this.lblRight.Location = new System.Drawing.Point(160, 24);
  208. this.lblRight.Name = "lblRight";
  209. this.lblRight.Size = new System.Drawing.Size(32, 13);
  210. this.lblRight.TabIndex = 4;
  211. this.lblRight.Text = "Right";
  212. //
  213. // tbTop
  214. //
  215. this.tbTop.Location = new System.Drawing.Point(80, 44);
  216. this.tbTop.Name = "tbTop";
  217. this.tbTop.Size = new System.Drawing.Size(60, 20);
  218. this.tbTop.TabIndex = 3;
  219. //
  220. // lblTop
  221. //
  222. this.lblTop.AutoSize = true;
  223. this.lblTop.Location = new System.Drawing.Point(8, 48);
  224. this.lblTop.Name = "lblTop";
  225. this.lblTop.Size = new System.Drawing.Size(25, 13);
  226. this.lblTop.TabIndex = 2;
  227. this.lblTop.Text = "Top";
  228. //
  229. // tbLeft
  230. //
  231. this.tbLeft.Location = new System.Drawing.Point(80, 20);
  232. this.tbLeft.Name = "tbLeft";
  233. this.tbLeft.Size = new System.Drawing.Size(60, 20);
  234. this.tbLeft.TabIndex = 1;
  235. //
  236. // lblLeft
  237. //
  238. this.lblLeft.AutoSize = true;
  239. this.lblLeft.Location = new System.Drawing.Point(8, 24);
  240. this.lblLeft.Name = "lblLeft";
  241. this.lblLeft.Size = new System.Drawing.Size(26, 13);
  242. this.lblLeft.TabIndex = 0;
  243. this.lblLeft.Text = "Left";
  244. //
  245. // cbApply
  246. //
  247. this.cbApply.AutoSize = true;
  248. this.cbApply.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
  249. this.cbApply.Checked = true;
  250. this.cbApply.CheckState = System.Windows.Forms.CheckState.Checked;
  251. this.cbApply.Location = new System.Drawing.Point(8, 272);
  252. this.cbApply.Name = "cbApply";
  253. this.cbApply.Size = new System.Drawing.Size(200, 17);
  254. this.cbApply.TabIndex = 10;
  255. this.cbApply.Text = "Apply to all pages and rebuild report";
  256. this.cbApply.TextAlign = System.Drawing.ContentAlignment.TopLeft;
  257. this.cbApply.UseVisualStyleBackColor = true;
  258. //
  259. // PreviewPageSetupForm
  260. //
  261. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  262. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  263. this.ClientSize = new System.Drawing.Size(320, 332);
  264. this.Controls.Add(this.cbApply);
  265. this.Controls.Add(this.gbMargins);
  266. this.Controls.Add(this.gbPaper);
  267. this.Controls.Add(this.gbOrientation);
  268. this.Name = "PreviewPageSetupForm";
  269. this.Text = "Page Setup";
  270. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.PreviewPageSetupForm_FormClosed);
  271. this.Controls.SetChildIndex(this.btnOk, 0);
  272. this.Controls.SetChildIndex(this.btnCancel, 0);
  273. this.Controls.SetChildIndex(this.gbOrientation, 0);
  274. this.Controls.SetChildIndex(this.gbPaper, 0);
  275. this.Controls.SetChildIndex(this.gbMargins, 0);
  276. this.Controls.SetChildIndex(this.cbApply, 0);
  277. this.gbPaper.ResumeLayout(false);
  278. this.gbPaper.PerformLayout();
  279. this.gbOrientation.ResumeLayout(false);
  280. this.gbOrientation.PerformLayout();
  281. this.gbMargins.ResumeLayout(false);
  282. this.gbMargins.PerformLayout();
  283. this.ResumeLayout(false);
  284. this.PerformLayout();
  285. }
  286. #endregion
  287. private System.Windows.Forms.GroupBox gbPaper;
  288. private System.Windows.Forms.TextBox tbHeight;
  289. private System.Windows.Forms.TextBox tbWidth;
  290. private System.Windows.Forms.Label lblHeight;
  291. private System.Windows.Forms.Label lblWidth;
  292. private System.Windows.Forms.ComboBox cbxPaper;
  293. private System.Windows.Forms.GroupBox gbOrientation;
  294. private System.Windows.Forms.Panel pnOrientation;
  295. private System.Windows.Forms.RadioButton rbLandscape;
  296. private System.Windows.Forms.RadioButton rbPortrait;
  297. private System.Windows.Forms.GroupBox gbMargins;
  298. private System.Windows.Forms.TextBox tbBottom;
  299. private System.Windows.Forms.Label lblBottom;
  300. private System.Windows.Forms.TextBox tbRight;
  301. private System.Windows.Forms.Label lblRight;
  302. private System.Windows.Forms.TextBox tbTop;
  303. private System.Windows.Forms.Label lblTop;
  304. private System.Windows.Forms.TextBox tbLeft;
  305. private System.Windows.Forms.Label lblLeft;
  306. private System.Windows.Forms.CheckBox cbApply;
  307. }
  308. }